Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Added V-72317 #10

Merged
merged 7 commits into from
Nov 9, 2017
Merged

Added V-72317 #10

merged 7 commits into from
Nov 9, 2017

Conversation

jburns12
Copy link
Contributor

No description provided.

Copy link
Member

@trevor-vaughan trevor-vaughan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you split these into two different PRs since they are unrelated and have different issues?

if !@macs.nil?
@macs.first.split(",").each do |mac|
describe mac do
it { should be_in ['hmac-sha2-256', 'hmac-sha2-512'] }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not 100% sure that sha-512 works in FIPS mode (and I'm 80% sure that it doesn't in all versions of RHEL). This should be checked before it's pushed.

We're going to have to toggle some of these based on FIPS being enabled on the target system.

@@ -63,4 +72,14 @@
finding."
tag "fix": "Remove all unapproved tunnels from the system, or document them with
the ISSO."

@conn_grep_results = inspec.command("grep -i issue /etc/audit/audit.rules").stdout.split("\n")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem right.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Openswan doesn't exist in EL7, only libreswan

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed that...sorry that was a really special testing mistake.


@conn_grep_results.each do |curr_line|
describe curr_line do
it { should be_in tunnels }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Checking for conn in the rules won't work because this is just "how it works".

Since this is an "unauthorized" finding, it has to always fail unless someone provides input as to what tunnels it's actually expecting.

We configure tunnels with Puppet in SIMP so I'm 100% sure that all other tunnels are purged. Otherwise, this is just a catch 22 check where you always have to ask if what is found is OK.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The audit rules thing was a mistake. I switched it to checking in the config files as the STIG mentions. The "tunnels" attribute will have to be populated with the expected tunnels so when an unexpected one is found it will fail.

@jburns12
Copy link
Contributor Author

I just moved V-72553 into its own PR and changed it back to the original here.

@trevor-vaughan trevor-vaughan changed the title Added V-72317 and updated V-72253 Added V-72317 Oct 18, 2017
Copy link
Member

@trevor-vaughan trevor-vaughan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May need changes, but willing to approve with an additional ticket.

@@ -63,4 +72,16 @@
finding."
tag "fix": "Remove all unapproved tunnels from the system, or document them with
the ISSO."

@grep_ipsec_conf = inspec.command("grep -i conn /etc/ipsec.conf").stdout.split("\n")
@grep_ipsec_d = inspec.command("grep -i conn /etc/ipsec.d/*.conf").stdout.split("\n")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be changed to a full processor that will follow the include references in the main ipsec.conf file.

You can include things from literally anywhere and we're going to miss a lot of we don't follow the links.

A small modification of this will probably work just fine https://gist.github.com/trevor-vaughan/df6a3a0ca42a2c6f59b51d7375fe151a

@jburns12 If you want to move this to an additional ticket, we can push this through as it stands. I just don't want to lose the fact that it's not actually properly processing everything.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@trevor-vaughan That makes sense to me...I'll open another ticket in the next couple days. Since my time doing this work is limited at this point, this might end up getting picked up by another MITRE team member.

@trevor-vaughan trevor-vaughan merged commit 8117fed into simp:master Nov 9, 2017
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Apr 6, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
@aaronlippold aaronlippold deleted the todos branch April 28, 2018 11:51
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request May 29, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request May 31, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request May 31, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 1, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 1, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 1, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 1, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 4, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 4, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 4, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 4, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 4, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 5, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 5, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 5, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 6, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 6, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 6, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 7, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 24, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 24, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 24, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
samcornwell pushed a commit to samcornwell/inspec-profile-disa_stig-el7 that referenced this pull request Jun 24, 2018
* * Reviewed all controls and fixed many issues
* updated impact logic to account for Not Applicable cases
* used the protected regex pattern `%r{ }` in place is //
* fixed many false positives reported by end users
* added TODOs to all controls that need to be enhanced
* added a new attributes files for this branch for review
* added logic so that all controls correctly report
* removed most `only_if` statments and replaced with skips + impact 0.0
* removed all `severity` tags in lue of using `impact`

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * Added EXEMPT_HOME_USERS attribute attributes file
* Removed extra attribute defn
* Fixed typo in call to package resource
* Updated attributes file

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>

* small change to push file

Signed-off-by: Aaron Lippold <lippold@gmail.com>

* * updated V-71863 fix the banner compare
* updated V-71961 to account for multiple users
* added attrubutes to support each

Signed-off-by: Bradley Shelton <bsheltonihs@gmail.com>
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants