Skip to content

Commit d60e642

Browse files
Create proc_creation_win_malware_dindoor_deno_remote_js.yml
1 parent bbcae24 commit d60e642

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
title: DinDoor Backdoor Deno Remote JavaScript Execution From PowerShell
2+
id: 75dd8ce3-9804-461e-8421-782eaaf6774e
3+
status: experimental
4+
description: Detects Deno launched from PowerShell with full permissions to execute remote JavaScript as observed in DinDoor Backdoor MSI installer chains.
5+
references:
6+
- https://posts.inthecyber.com/dindoor-is-back-fake-chatgpt-and-claude-installers-show-muddywater-linked-payloads-b3cd8d9e1827
7+
- https://www.malwarebytes.com/blog/threat-intel/2026/05/fake-software-on-github-and-sourceforge-distribute-deno-rat
8+
- https://hunt.io/blog/dindoor-deno-runtime-backdoor-msi-analysis
9+
author: Marco Pedrinazzi (@pedrinazziM) (InTheCyber)
10+
date: 2026-06-25
11+
tags:
12+
- attack.execution
13+
- attack.t1059.001
14+
- attack.t1059.007
15+
- detection.emerging-threats
16+
logsource:
17+
product: windows
18+
category: process_creation
19+
detection:
20+
selection_img:
21+
Image|endswith: '\deno.exe'
22+
selection_parent:
23+
ParentImage|endswith:
24+
- '\powershell.exe'
25+
selection_full_perms:
26+
CommandLine|contains:
27+
- '-A' # skip the sandbox entirely
28+
- '--allow-all' # skip the sandbox entirely
29+
selection_remote_source:
30+
CommandLine|contains:
31+
- 'http:'
32+
- 'https:'
33+
- 'data:application/javascript;base64'
34+
condition: selection_img and selection_parent and selection_full_perms and selection_remote_source
35+
falsepositives:
36+
- Legitimate PowerShell automation using Deno with full permissions to execute remote JavaScript.
37+
level: high

0 commit comments

Comments
 (0)