1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
#!/usr/bin/python3
from __future__ import print_function
import argparse
try:
from utils.controleval import get_available_products, load_product_yaml
from utils.profile_tool import (
command_stats,
command_sub,
command_most_used_rules,
command_most_used_components,
)
except ImportError:
print("The ssg module could not be found.")
print(
"Run .pyenv.sh available in the project root directory,"
" or add it to PYTHONPATH manually."
)
print("$ source .pyenv.sh")
exit(1)
def parse_stats_subcommand(subparsers):
parser_stats = subparsers.add_parser(
"stats",
description=(
"Obtains and displays XCCDF profile statistics. Namely number of rules in the profile,"
" how many of these rules have their OVAL check implemented, how many have "
"a remediation available, ..."
),
help=("Show profile statistics"),
)
parser_stats.add_argument(
"--profile",
"-p",
action="store",
help=(
"Show statistics for this XCCDF Profile only. If not provided the script will show "
"stats for all available profiles."
),
)
parser_stats.add_argument(
"--benchmark",
"-b",
required=True,
action="store",
help="Specify XCCDF file or a SCAP source data stream file to act on.",
)
parser_stats.add_argument(
"--implemented-ovals",
default=False,
action="store_true",
dest="implemented_ovals",
help="Show IDs of implemented OVAL checks.",
)
parser_stats.add_argument(
"--implemented-sces",
default=False,
action="store_true",
dest="implemented_sces",
help="Show IDs of implemented SCE checks.",
)
parser_stats.add_argument(
"--missing-stigid-refs",
default=False,
action="store_true",
dest="missing_stigid_refs",
help="Show rules in STIG profiles that don't have stigid references.",
)
parser_stats.add_argument(
"--missing-stigref-refs",
default=False,
action="store_true",
dest="missing_stigref_refs",
help="Show rules in STIG profiles that don't have stigref references.",
)
parser_stats.add_argument(
"--missing-ccn-refs",
default=False,
action="store_true",
dest="missing_ccn_refs",
help="Show rules in CCN profiles that don't have CCN references.",
)
parser_stats.add_argument(
"--missing-cis-refs",
default=False,
action="store_true",
dest="missing_cis_refs",
help="Show rules in CIS profiles that don't have CIS references.",
)
parser_stats.add_argument(
"--missing-hipaa-refs",
default=False,
action="store_true",
dest="missing_hipaa_refs",
help="Show rules in HIPAA profiles that don't have HIPAA references.",
)
parser_stats.add_argument(
"--missing-anssi-refs",
default=False,
action="store_true",
dest="missing_anssi_refs",
help="Show rules in ANSSI profiles that don't have ANSSI references.",
)
parser_stats.add_argument(
"--missing-ospp-refs",
default=False,
action="store_true",
dest="missing_ospp_refs",
help="Show rules in OSPP profiles that don't have OSPP references.",
)
parser_stats.add_argument(
"--missing-pcidss4-refs",
default=False,
action="store_true",
dest="missing_pcidss4_refs",
help="Show rules in PCI-DSS profiles that don't have pcidss4 references.",
)
parser_stats.add_argument(
"--missing-cui-refs",
default=False,
action="store_true",
dest="missing_cui_refs",
help="Show rules in CUI profiles that don't have CUI references.",
)
parser_stats.add_argument(
"--missing-ovals",
default=False,
action="store_true",
dest="missing_ovals",
help="Show IDs of unimplemented OVAL checks.",
)
parser_stats.add_argument(
"--missing-sces",
default=False,
action="store_true",
dest="missing_sces",
help="Show IDs of unimplemented SCE checks.",
)
parser_stats.add_argument(
"--implemented-fixes",
default=False,
action="store_true",
dest="implemented_fixes",
help="Show IDs of implemented remediations.",
)
parser_stats.add_argument(
"--missing-fixes",
default=False,
action="store_true",
dest="missing_fixes",
help="Show IDs of unimplemented remediations.",
)
parser_stats.add_argument(
"--assigned-cces",
default=False,
action="store_true",
dest="assigned_cces",
help="Show IDs of rules having CCE assigned.",
)
parser_stats.add_argument(
"--missing-cces",
default=False,
action="store_true",
dest="missing_cces",
help="Show IDs of rules missing CCE element.",
)
parser_stats.add_argument(
"--implemented",
default=False,
action="store_true",
help="Equivalent of --implemented-ovals, --implemented_fixes and --assigned-cves "
"all being set.",
)
parser_stats.add_argument(
"--missing",
default=False,
action="store_true",
help="Equivalent of --missing-ovals, --missing-fixes and --missing-cces all being set.",
)
parser_stats.add_argument(
"--ansible-parity",
action="store_true",
help="Show IDs of rules with Bash fix which miss Ansible fix."
" Rules missing both Bash and Ansible are not shown.",
)
parser_stats.add_argument(
"--all",
default=False,
action="store_true",
dest="all",
help="Show all available statistics.",
)
parser_stats.add_argument(
"--product",
action="store",
dest="product",
help="Product directory to evaluate XCCDF under (e.g., ~/scap-security-guide/rhel8)",
)
parser_stats.add_argument(
"--skip-stats",
default=False,
action="store_true",
dest="skip_overall_stats",
help="Do not show overall statistics.",
)
parser_stats.add_argument(
"--format",
default="plain",
choices=["plain", "json", "csv", "html"],
help="Which format to use for output.",
)
parser_stats.add_argument(
"--output", help="If defined, statistics will be stored under this directory."
)
def parse_sub_subcommand(subparsers):
parser_sub = subparsers.add_parser(
"sub",
description=(
"Subtract rules and variable selections from profile1 based on rules present in "
"profile2. As a result, a new profile is generated. It doesn't support profile "
"inheritance, this means that only rules explicitly "
"listed in the profiles will be taken in account."
),
help=(
"Subtract rules and variables from profile1 "
"based on selections present in profile2."
),
)
parser_sub.add_argument(
"--build-config-yaml",
required=True,
help="YAML file with information about the build configuration. "
"e.g.: ~/scap-security-guide/build/build_config.yml "
"needed for autodetection of profile root",
)
parser_sub.add_argument(
"--ssg-root",
required=True,
help="Directory containing the source tree. e.g. ~/scap-security-guide/",
)
parser_sub.add_argument(
"--product",
required=True,
help="ID of the product for which we are building Playbooks. e.g.: 'fedora'",
)
parser_sub.add_argument(
"--profile1", type=str, dest="profile1", required=True, help="YAML profile"
)
parser_sub.add_argument(
"--profile2", type=str, dest="profile2", required=True, help="YAML profile"
)
def parse_most_used_rules_subcommand(subparsers):
parser_most_used_rules = subparsers.add_parser(
"most-used-rules",
description=(
"Generates list of all rules used by the existing profiles. In various formats."
),
help="Generates list of all rules used by the existing profiles.",
)
parser_most_used_rules.add_argument(
"BENCHMARKS",
type=str,
nargs="*",
default=[],
help=(
"Specify XCCDF files or a SCAP source data stream files to act on. "
"If not provided are used control files. e.g.: ~/scap-security-guide/controls"
),
)
parser_most_used_rules.add_argument(
"--format",
default="plain",
choices=["plain", "json", "csv"],
help="Which format to use for output.",
)
parser_most_used_rules.add_argument(
"--products",
help="List of products to be considered. If not specified will by used all products.",
nargs="+",
choices=get_available_products(),
default=get_available_products(),
)
def parse_most_used_components(subparsers):
parser_most_used_components = subparsers.add_parser(
"most-used-components",
description=(
"Generates list of all components used by the rules in existing profiles."
" In various formats."
),
help="Generates list of all components used by the rules in existing profiles.",
)
parser_most_used_components.add_argument(
"--format",
default="plain",
choices=["plain", "json", "csv"],
help="Which format to use for output.",
)
parser_most_used_components.add_argument(
"--products",
help=(
"List of products to be considered. "
"If not specified will by used all products with components_root."
),
nargs="+",
choices=get_available_products_with_components_root(),
default=get_available_products_with_components_root(),
)
parser_most_used_components.add_argument(
"--rules",
default=False,
action="store_true",
help=(
"For every component, show the usage of each component's rule "
"in the profiles in given product."
),
)
parser_most_used_components.add_argument(
"--all",
default=False,
action="store_true",
help=(
"List all components and rules in the output, including unused "
"components and unused rules."
),
)
def get_available_products_with_components_root():
out = set()
for product in get_available_products():
product_yaml = load_product_yaml(product)
components_root = product_yaml.get("components_root")
if components_root is not None:
out.add(product)
return out
def parse_args():
parser = argparse.ArgumentParser(description="Profile statistics and utilities tool")
subparsers = parser.add_subparsers(title="subcommands", dest="subcommand", required=True)
parse_stats_subcommand(subparsers)
parse_sub_subcommand(subparsers)
parse_most_used_rules_subcommand(subparsers)
parse_most_used_components(subparsers)
args = parser.parse_args()
if args.subcommand == "stats":
if args.all:
args.implemented = True
args.missing = True
args.ansible_parity = True
if args.implemented:
args.implemented_ovals = True
args.implemented_fixes = True
args.assigned_cces = True
if args.missing:
args.missing_ovals = True
args.missing_sces = True
args.missing_fixes = True
args.missing_cces = True
args.missing_stigid_refs = True
args.missing_stigref_refs = True
args.missing_ccn_refs = True
args.missing_cis_refs = True
args.missing_hipaa_refs = True
args.missing_anssi_refs = True
args.missing_ospp_refs = True
args.missing_pcidss4_refs = True
args.missing_cui_refs = True
return args
SUBCMDS = {
"stats": command_stats,
"sub": command_sub,
"most-used-rules": command_most_used_rules,
"most-used-components": command_most_used_components,
}
def main():
args = parse_args()
SUBCMDS[args.subcommand](args)
if __name__ == "__main__":
main()
|