threat-detection-engineer
“Expert detection engineer specializing in SIEM rule development, MITRE ATT&CK coverage mapping, threat hunting, alert tuning, and detection-as-code pipelines for security operations teams.”
aipkg.jsonLICENSE.txtREADME.mdthreat-detection-engineer.md- 01E1External Transmission60%MEDIUM
threat-detection-engineer.md:331
detailhide
Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
- name: Deploy to Splunk run: | # Push compiled rules via Splunk REST API curl -k -u "${{ secrets.SPLUNK_USER }}:${{ secrets.SPLUNK_PASS }}" \ https://${{ secrets.SPLUNK_HOST }}:8089/servicesNS/admin/search/saved/searches \ -d @compiled/splunk/rules.conffix Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- 02TM1Tool Parameter Abuse60%HIGH
threat-detection-engineer.md:331
detailhide
Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
- name: Deploy to Splunk run: | # Push compiled rules via Splunk REST API curl -k -u "${{ secrets.SPLUNK_USER }}:${{ secrets.SPLUNK_PASS }}" \ https://${{ secrets.SPLUNK_HOST }}:8089/servicesNS/admin/search/saved/searches \ -d @compiled/splunk/rules.conffix Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
- 03YR1YARA rule 'info_stealer': Information stealer patterns (credential harvesting, browser data theft) [malware]75%HIGH
threat-detection-engineer.md:351
detailhide
YARA rule matched a known malware signature (reverse shell, backdoor, ransomware, C2 framework, or info stealer).
## Hunt Hypothesis Adversaries with local admin privileges are dumping credentials from LSASS process memory using tools like Mimikatz, ProcDump, or direct ntdll calls, and our current detections are not catching all variants. ## MITRE ATT&CK Mapping - **T1003.001** — OS Credential Dumping: LSASS Memory
fix Remove the malware payload or compromised file entirely. Investigate how it entered the skill and audit all other artifacts for additional indicators of compromise.