- How many employees work at the Valdorian Times?
Employees
| count
- What is the Editorial Director’s name?
Employees
| where role == 'Editorial Director'
- How many emails did Nene Leaks receive?
Email
| where recipient == 'nene_leaks@valdoriantimes.news'
| count
- How many distinct senders were seen in the email logs from the domain name “weprinturstuff.com”?
Email
| where sender has 'weprinturstuff.com'
| distinct sender
| count
- How many distinct websites did “Lois Lane” visit?
Employees
| where name == 'Lois Lane';
OutboundNetworkEvents
| where src_ip == '10.10.0.22'
| distinct url
| count
- How many distinct domains in the PassiveDns records contain the word “hire”?
PassiveDns
| where domain contains 'hire'
| distinct domain
| count
- What IPs did the domain “jobhire.org” resolve to (enter any one of them)?
PassiveDns
| where domain == 'jobhire.org'
| distinct ip
- How many distinct websites did employees with the first name “Mary” Visit?
let mary_ips = Employees
| where name has 'Mary'
| distinct ip_addr;
OutboundNetworkEvents
| where src_ip in (mary_ips)
| distinct url
| count
- How many authentication attempts did we see to the accounts of employees with the first name Mary?
let marys = Employees
| where name has 'Mary'
| distinct username;
AuthenticationEvents
| where username in (marys)
| count
Section 2
- What is the Editorial Intern’s name?
- When was the Editorial Intern hired at The Valdorian Times?
Employees
| where role has 'Intern'
- How many total emails has Clark Kent received?
Email
| where recipient has 'clark_kent'
| count
- Review the emails sent to Clark Kent for the one sent on January 31, 2024 containing the final edits for the election OpEd. What was the subject line of this email?
- Who sent this email containing the final edits for the OpEd piece? Enter the sender’s email address.
- What was the name of the .docx file that was sent in this email?
Email
| where recipient has 'clark_kent'