PowerShell Invoke-NinjaCopy script

Detects PowerShell scripts that contain the default exported functions used on Invoke-NinjaCopy. Attackers can use Invoke-NinjaCopy to read SYSTEM files that are normally locked, such as the NTDS.dit file or registry hives.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2023/01/23"
  3integration = ["windows"]
  4maturity = "production"
  5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
  6min_stack_version = "8.3.0"
  7updated_date = "2024/03/08"
  8
  9[rule]
 10author = ["Elastic"]
 11description = """
 12Detects PowerShell scripts that contain the default exported functions used on Invoke-NinjaCopy. Attackers can use
 13Invoke-NinjaCopy to read SYSTEM files that are normally locked, such as the NTDS.dit file or registry hives.
 14"""
 15from = "now-9m"
 16index = ["winlogbeat-*", "logs-windows.powershell*"]
 17language = "kuery"
 18license = "Elastic License v2"
 19name = "PowerShell Invoke-NinjaCopy script"
 20note = """## Triage and analysis
 21
 22### Investigating PowerShell Invoke-NinjaCopy script
 23
 24PowerShell is one of the main tools system administrators use for automation, report routines, and other tasks, making it available for use in various environments, creating an attractive way for attackers to execute code.
 25
 26Invoke-NinjaCopy is a PowerShell script capable of reading SYSTEM files that were normally locked, such as `NTDS.dit` or sensitive registry locations. It does so by using the direct volume access technique, which enables attackers to bypass access control mechanisms and file system monitoring by reading the raw data directly from the disk and extracting the file by parsing the file system structures.
 27
 28#### Possible investigation steps
 29
 30- Examine the script content that triggered the detection; look for suspicious DLL imports, collection or exfiltration capabilities, suspicious functions, encoded or compressed data, and other potentially malicious characteristics.
 31- Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
 32- Examine file or network events from the involved PowerShell process for suspicious behavior.
 33- Investigate other alerts associated with the user/host during the past 48 hours.
 34- Evaluate whether the user needs to use PowerShell to complete tasks.
 35- Determine whether the script stores the captured data locally.
 36- Check if the imported function was executed and which file it targeted.
 37
 38### False positive analysis
 39
 40- This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.
 41
 42### Response and remediation
 43
 44- Initiate the incident response process based on the outcome of the triage.
 45- Isolate the involved hosts to prevent further post-compromise behavior.
 46- Restrict PowerShell usage outside of IT and engineering business units using GPOs, AppLocker, Intune, or similar software.
 47- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
 48- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 49- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 50- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 51"""
 52references = [
 53  "https://github.com/BC-SECURITY/Empire/blob/main/empire/server/data/module_source/collection/Invoke-NinjaCopy.ps1"
 54]
 55risk_score = 47
 56rule_id = "b8386923-b02c-4b94-986a-d223d9b01f88"
 57severity = "medium"
 58tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Credential Access", "Data Source: PowerShell Logs", "Resources: Investigation Guide"]
 59timestamp_override = "event.ingested"
 60type = "query"
 61
 62query = '''
 63event.category:process and host.os.type:windows and
 64  powershell.file.script_block_text : (
 65    "StealthReadFile" or
 66    "StealthReadFileAddr" or
 67    "StealthCloseFileDelegate" or
 68    "StealthOpenFile" or
 69    "StealthCloseFile" or
 70    "StealthReadFile" or
 71    "Invoke-NinjaCopy"
 72   )
 73  and not user.id : "S-1-5-18"
 74  and not powershell.file.script_block_text : (
 75    "sentinelbreakpoints" and "Set-PSBreakpoint" and "PowerSploitIndicators"
 76  )
 77'''
 78
 79
 80[[rule.threat]]
 81framework = "MITRE ATT&CK"
 82[[rule.threat.technique]]
 83id = "T1003"
 84name = "OS Credential Dumping"
 85reference = "https://attack.mitre.org/techniques/T1003/"
 86
 87    [[rule.threat.technique.subtechnique]]
 88    id = "T1003.002"
 89    name = "Security Account Manager"
 90    reference = "https://attack.mitre.org/techniques/T1003/002/"
 91
 92    [[rule.threat.technique.subtechnique]]
 93    id = "T1003.003"
 94    name = "NTDS"
 95    reference = "https://attack.mitre.org/techniques/T1003/003/"
 96
 97
 98
 99[rule.threat.tactic]
100id = "TA0006"
101name = "Credential Access"
102reference = "https://attack.mitre.org/tactics/TA0006/"
103
104
105[[rule.threat]]
106framework = "MITRE ATT&CK"
107[[rule.threat.technique]]
108id = "T1059"
109name = "Command and Scripting Interpreter"
110reference = "https://attack.mitre.org/techniques/T1059/"
111
112    [[rule.threat.technique.subtechnique]]
113    id = "T1059.001"
114    name = "PowerShell"
115    reference = "https://attack.mitre.org/techniques/T1059/001/"
116
117
118[rule.threat.tactic]
119id = "TA0002"
120name = "Execution"
121reference = "https://attack.mitre.org/tactics/TA0002/"
122
123[[rule.threat]]
124framework = "MITRE ATT&CK"
125[[rule.threat.technique]]
126id = "T1006"
127name = "Direct Volume Access"
128reference = "https://attack.mitre.org/techniques/T1006/"
129
130[rule.threat.tactic]
131id = "TA0005"
132name = "Defense Evasion"
133reference = "https://attack.mitre.org/tactics/TA0005/"

Triage and analysis

Investigating PowerShell Invoke-NinjaCopy script

PowerShell is one of the main tools system administrators use for automation, report routines, and other tasks, making it available for use in various environments, creating an attractive way for attackers to execute code.

Invoke-NinjaCopy is a PowerShell script capable of reading SYSTEM files that were normally locked, such as NTDS.dit or sensitive registry locations. It does so by using the direct volume access technique, which enables attackers to bypass access control mechanisms and file system monitoring by reading the raw data directly from the disk and extracting the file by parsing the file system structures.

Possible investigation steps

  • Examine the script content that triggered the detection; look for suspicious DLL imports, collection or exfiltration capabilities, suspicious functions, encoded or compressed data, and other potentially malicious characteristics.
  • Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
  • Examine file or network events from the involved PowerShell process for suspicious behavior.
  • Investigate other alerts associated with the user/host during the past 48 hours.
  • Evaluate whether the user needs to use PowerShell to complete tasks.
  • Determine whether the script stores the captured data locally.
  • Check if the imported function was executed and which file it targeted.

False positive analysis

  • This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Isolate the involved hosts to prevent further post-compromise behavior.
  • Restrict PowerShell usage outside of IT and engineering business units using GPOs, AppLocker, Intune, or similar software.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

References

Related rules

to-top