Courseiva

CCNA Data Collection And Processing Questions

24 questions · Data Collection And Processing topic · All types, answers revealed

1
Multi-Selecthard

Which THREE of the following are common attributes used to characterize an 'Observed Data' object in STIX 2.1?

Select 3 answers
A.number_observed
B.vulnerability_scanner_id
C.root_password
D.last_observed
E.first_observed
AnswersA, D, E

Frequency is a key attribute of sightings.

Why this answer

Observed data objects record the 'first_observed', 'last_observed', and 'number_observed' properties to provide context to the sighting.

2
MCQhard

You are troubleshooting a feed ingestion failure in an OpenCTI platform where the connector logs show '403 Forbidden' during a HTTPS pull. What is the primary troubleshooting step?

A.Update the SSL certificates on the collector.
B.Increase the connector memory allocation.
C.Check if the source IP is whitelisted on the threat intelligence provider side.
D.Restart the OpenCTI RabbitMQ service.
AnswerC

403 errors are frequently triggered by IP-based access control lists.

Why this answer

403 Forbidden indicates the server understood the request but refuses to authorize it, often due to IP whitelisting or invalid API tokens at the source.

3
MCQmedium

You are configuring a TAXII 2.1 feed in a SIEM. You need to ensure that the collection process only retrieves high-confidence indicators. Where is this filter typically applied?

A.In the TAXII client configuration settings.
B.At the firewall level.
C.By disabling the feed authentication.
D.By modifying the STIX schema.
AnswerA

Most TAXII clients allow for query parameters to filter by confidence.

Why this answer

Filtering by confidence levels is typically performed within the TAXII client configuration or via an API parameter defined by the threat feed provider.

4
MCQhard

While processing threat intelligence, you encounter an indicator containing a 'base64' encoded payload. Which action should be performed during normalization to maintain searchability?

A.Replace the payload with a static hash.
B.Discard the indicator as encrypted.
C.Store the raw base64 string as a comment.
D.Decode the content and extract nested indicators.
AnswerD

Decoding is essential for normalization and indicator extraction.

Why this answer

Decoding the payload allows the analyst to extract actual IOCs (like C2 domains) which can then be indexed.

5
Multi-Selectmedium

Which TWO of the following are recognized categories of threat intelligence sources?

Select 2 answers
A.Open Source Intelligence (OSINT).
B.Local User Logs.
C.Commercial/Proprietary Feeds.
D.Internal Hardware Inventory.
E.Network Topology Maps.
AnswersA, C

OSINT is a primary intelligence category.

Why this answer

Threat intelligence sources are generally categorized into open-source (OSINT) and closed/proprietary sources.

6
MCQhard

You are using MISP to ingest a feed that provides indicators in CSV format. You need to map the 'src_ip' column to the appropriate MISP attribute type. Which mapping is most accurate for ensuring effective correlation?

A.Map to 'ip-src'.
B.Map to 'text' attribute type.
C.Map to 'domain'.
D.Map to 'comment'.
AnswerA

ip-src is the correct attribute type for source IPs.

Why this answer

IP-src is the standard MISP attribute type for source IP addresses, allowing for proper correlation with network logs.

7
Multi-Selecthard

Which THREE of the following are considered challenges when ingesting threat intelligence feeds?

Select 3 answers
A.Lack of standardized formatting.
B.Data volume exceeding processing capacity.
C.Lack of internet access.
D.Defaulting to TLP:CLEAR.
E.High volume of false positives (noise).
AnswersA, B, E

Disparate formats create significant processing overhead.

Why this answer

Data volume, lack of standardization, and quality/noise are the most significant hurdles in intelligence ingestion.

8
MCQhard

In the context of STIX 2.1, what is the purpose of the 'relationship' object?

A.To define the schema version.
B.To encrypt the data transport.
C.To link two objects together.
D.To set the confidence score.
AnswerC

Relationship objects allow for semantic linking of intelligence data.

Why this answer

The relationship object links two SDOs (like an Indicator and a Malware object) to provide context.

9
Multi-Selectmedium

Which TWO of the following are valid ways to improve the reliability of threat intelligence data?

Select 2 answers
A.Removing all metadata.
B.Increasing the ingest frequency.
C.Cross-referencing indicators across multiple sources.
D.Validating the source authenticity.
E.Automatically trusting all feeds.
AnswersC, D

Verification against multiple sources improves accuracy.

Why this answer

Data reliability is improved through source verification and cross-referencing indicators across multiple platforms.

10
Multi-Selectmedium

Which TWO of the following are common methods used to normalize threat data from disparate sources?

Select 2 answers
A.Deleting all historical data.
B.Standardizing time formats (e.g., UTC).
C.Increasing the firewall throughput.
D.Disabling API authentication.
E.Mapping to a common schema (e.g., STIX).
AnswersB, E

Normalization requires time synchronization.

Why this answer

Normalization involves mapping diverse data to a common schema and standardizing fields like time and identity.

11
MCQmedium

Which protocol is most commonly used for the automated transport of machine-readable threat intelligence, specifically designed to support the STIX format?

D.TAXII
AnswerD

TAXII is the industry standard for transporting STIX.

Why this answer

TAXII (Trusted Automated eXchange of Intelligence Information) is the application-layer protocol designed specifically to transport STIX information.

12
MCQhard

You are integrating a dark web monitoring feed into your TIP. The data arrives as unstructured text. What is the most effective first step in the data processing pipeline?

A.Application of NLP techniques to extract entities.
B.Hashing the entire document.
C.Direct ingestion into the SIEM.
D.Manual entry into a spreadsheet.
AnswerA

NLP automates the extraction of IOCs from unstructured text.

Why this answer

NLP (Natural Language Processing) is the standard technique for converting unstructured text into structured, normalized intelligence.

13
Multi-Selectmedium

Which TWO of the following are common actions performed during the 'processing' phase of the threat intelligence lifecycle?

Select 2 answers
A.Normalization to a unified format.
B.Parsing of raw data files.
C.Physical installation of servers.
D.Writing incident response playbooks.
E.Final delivery to the CISO.
AnswersA, B

Normalization is essential to make data usable.

Why this answer

Data processing focuses on transforming raw data into useful information, typically through parsing and normalization.

14
MCQmedium

You are configuring a TAXII client to pull STIX 2.1 data from a commercial threat intelligence platform. During testing, the client reports a 406 Not Acceptable error. What is the most likely cause?

A.The connection is blocked by a firewall ACL.
B.The API key provided for authentication is expired.
C.The client requested an unsupported content-type in the Accept header.
D.The TAXII discovery service endpoint is misconfigured.
AnswerC

The 406 error specifically relates to content negotiation failure.

Why this answer

A 406 error typically indicates that the media type requested in the Accept header is not supported by the TAXII server, often due to a mismatch between STIX versioning expectations.

15
MCQhard

You are setting up a STIX-to-SIEM pipeline. The SIEM requires data in CSV format. What is the critical step in your data processing architecture?

A.Ignore the format mismatch.
B.Develop an ETL/transformation script.
C.Enable automatic STIX parsing in the SIEM engine.
D.Increase the SIEM storage capacity.
AnswerB

Transforming data formats is the core of the ETL process.

Why this answer

You must implement a transformation layer (often using a library or script) to map the JSON STIX structure to the required CSV columns.

16
MCQeasy

Which of the following is an example of 'structured' threat intelligence data?

A.An email body.
B.A STIX 2.1 JSON file.
C.A handwritten note.
D.A PDF report from a vendor.
AnswerB

STIX is a structured standard.

Why this answer

STIX/TAXII provides a machine-readable, structured format for intelligence.

17
MCQeasy

When collecting data from open-source intelligence (OSINT) sources, what is the primary risk associated with automated scraping without rate-limit awareness?

A.Lack of data encryption.
B.STIX version mismatch.
C.Data normalization failure.
D.Source IP blacklisting.
AnswerD

Service providers block IPs that exceed defined rate thresholds.

Why this answer

Automated scraping without respect for rate limits often leads to IP blacklisting by the source provider.

18
Multi-Selecthard

Which THREE of the following are key components of a STIX 2.1 'Indicator' object?

Select 3 answers
A.valid_from
B.confidence
C.firewall_acl_rule
D.user_password_hash
E.pattern
AnswersA, B, E

Validity dates are standard properties.

Why this answer

The Indicator object in STIX 2.1 contains specific properties including the pattern, validity period, and confidence score.

19
MCQeasy

Which of the following is a 'pull-based' method of threat intelligence data collection?

A.TAXII Poll.
B.Webhook notifications.
C.Email distribution lists.
D.RSS feeds.
AnswerA

A poll is an explicit request for data.

Why this answer

A TAXII client requesting data from a TAXII server (Poll) is a pull-based method.

20
MCQmedium

You are ingesting threat data into a TIP and notice that indicators lack 'TLP' (Traffic Light Protocol) markings. What is the standard industry procedure?

A.Assume TLP:RED.
B.Publish to public forums.
C.Discard the data entirely.
D.Assume TLP:CLEAR.
AnswerA

Standard practice is to default to the most restrictive level.

Why this answer

When TLP is missing, the default safest practice is to assume TLP:RED or the most restrictive category to prevent unauthorized disclosure.

21
MCQmedium

When deduplicating threat intelligence data, which unique identifier is most effective for comparing two different 'malware' objects?

A.The file size.
B.The source name.
C.The timestamp of ingestion.
D.The object ID (UUID).
AnswerD

The STIX ID is designed to be the globally unique identifier for objects.

Why this answer

The 'pattern' or 'hash' (if applicable) or a unique 'external_id' are common identifiers, but 'id' in STIX is the unique object identifier.

22
MCQmedium

When normalizing threat data using the STIX 2.1 standard, which field must be populated to define the 'type' of the observable for a file object?

A.name
B.type
C.spec_version
D.hashes
AnswerB

The type field is required for all STIX objects.

Why this answer

In STIX 2.1, the 'type' field is mandatory for all SDOs and SCOs, and for file objects, it must be set to 'file'.

23
Multi-Selecthard

Which THREE of the following are critical steps when troubleshooting a failed TAXII 2.1 server connection?

Select 3 answers
A.Reinstall the operating system.
B.Verify network connectivity (e.g., ping/telnet).
C.Validate server TLS certificate chain.
D.Modify the TAXII protocol specification.
E.Confirm valid API credentials.
AnswersB, C, E

Connectivity must be established first.

Why this answer

Troubleshooting should focus on network reachability, TLS/SSL configuration, and authentication credentials.

24
MCQeasy

A security analyst is validating a threat feed that uses JSON. Which tool is most appropriate for verifying that the JSON structure conforms to a specific schema?

A.Netstat.
B.JSON Schema Validator.
C.Nmap.
D.Wireshark.
AnswerB

This tool checks against defined rules.

Why this answer

JSON Schema validation is the standard method for verifying the structure and types of JSON data.

Ready to test yourself?

Try a timed practice session using only Data Collection And Processing questions.