Skip to content

Latest commit

 

History

History
84 lines (76 loc) · 3.7 KB

CONTRIBUTING.md

File metadata and controls

84 lines (76 loc) · 3.7 KB

Contributing to Strelka

Thank you so much for your interest in contributing to Strelka! This document contains guidelines to follow when contributing to the project.

Code of Conduct

The Code of Conduct can be reviewed here.

Submitting Changes

Pull requests should be submitted using the pull request template. Changes will be validated by the project maintainers before merging to master.

Submitting Bugs

Bugs should be submitted as issues using the bug report template.

Submitting Enhancements

Enhancements should be submitted as issues using the feature request template.

Development Environment

Development builds can tested using the default docker-compose.yaml file (build/docker-compose.yaml). To bring the project up with docker-compse, use the following command as a template: bash docker-compose -f build/docker-compose.yaml --project-name strelka up

Testing

We rely on contributors to test any changes before they are submitted as pull requests. Any components added or changed should be tested and tests documented in the pull request. To assist in testing, the project maintainers may ask for file samples.

Style Guides

Python

Python code should attempt to adhere as closely to PEP8 as possible. We may ask authors to refactor code for better PEP8 compliance, but we do not enforce 100% compliance.

Scanners

  • Write event data in snake_case JSON format
  • Write event data as early as possible during a scan
  • Write known date-time values in ISO 8601 (up to seconds) whenever possible
    self.event["timestamp"] = datetime.utcfromtimestamp(pe.FILE_HEADER.TimeDateStamp).isoformat(timespec="seconds")
  • Prioritize reading file data in this order:
    • Bytes
    mime_type = magic.from_buffer(data, mime=True)
    • BytesIO
    with io.BytesIO(data) as bzip2_obj:
    • tempfile
    with tempfile.NamedTemporaryFile(dir=tmp_directory) as tmp_data:
        tmp_data.write(data)
        tmp_data.flush()
  • Add appropriate try/except statements and append the exceptions as flags
    try:
      ...
    except ValueError:
      self.flags.append(f"value_error_{object_id}")
    except PDFObjectNotFound:
      self.flags.append(f"object_not_found_{object_id}")
    except PDFNotImplementedError:
      self.flags.append(f"not_implemented_error_{object_id}")
    except PSSyntaxError:
      self.flags.append(f"ps_syntax_error_{object_id}")
  • Add a total dictionary if a scanner can extract more than 1 file from the file being scanned
    • This dictionary should be as contextual as possible and include the number of successfully extracted files
    self.event["total"] = {"scripts": 0, "forms": 0, "inputs": 0, "frames": 0, "extracted": 0}
  • If possible, do not alter the file content of child files
    • If file content needs to be altered, then it should happen at scan time and not during creation
  • Choose literal child filenames over contextual child filenames whenever possible
    if part_filename is not None:
        child_filename = f"{part_filename}"
        ...
    else:
        child_filename = f"part_{index}"
  • If a parent file is adding external event data to a child file during its creation, then the external event key should be formatted <name of parent>_<name of field>
    rar_event_data = {"scan_rar_host_os": HOST_OS_MAPPING[child_info.host_os]}
  • Don't write event data that can create limitless fields -- use an array of dictionary entries
    • These dictionary entries should be as contextual as possible (i.e. {"segment": "foo", "sections": "bar"} is better than {"key": "foo", "value": "bar"})