Modeling a System Flashcards
What is a data flow diagram?
- diagrams that describe the flow of data among components in a system as well as properties of the components and flow
What are sequence diagrams?
- diagrams that describe the interactions of components in an ordered manner.
What are sequence diagrams useful in identifying threats?
- They allow a designer to understand the state of the system over time
What are process flow diagrams used for?
- They highlight the operational flow through actions among components in a system
What are attack trees?
- They depict the steps along a path that an attacker might try as part of reaching their goal to perform actions with nefarious intent
What are fishbone diagrams?
- They show the relationships between an outcome and the root cause(s) that enabled such an effect to occur
When developing a DFD what are some common annotations used for elements?
- Name of unit
- Owner
- If a process what privilege is it running at
- If it’s a binary object is it expected to be signed?
- What programming languages are used?
- For managed/interpreted code what runtime/bytecode processor is used
What is an element in the context of a DFD?
- A shape that represents a process or operating unit within the system
What is a container in the context of a DFD?
- A unit in the system that contains additional elements and flows
What is a context layer in a DFD?
- A DFD diagram that represents a high level view of a system and it’s interactions with external entities(e.g., remote systems or users)
Where is a container used in a DFD?
- in a context layer DFD
What is an external entity in the context of a DFD?
- It represents a process or system that is involved in the operation or function of the system but is not in scope for the analysis
What is a data store in the context of a DFD?
- represents where bulk data is stored, a message bus, or a shared memory region
What are some examples of data represented by a data store in the context of a DFD?
- database
- file or buffer holding small amounts of security relevant data
- logfile output
What are some meta data that should be captured for a data store in the context of a DFD?
- Type of storage - file, S3 bucket, service mesh, shared memory region
- Type and classification of data held - structured/unstructured, data format
- Sensitivity or value of data
- Protections on the data store itself
- Replication - is data replicated to a different data store
- Backup - is data copied to another place for safety but with reduced security and access controls