LoFP LoFP / bits is a legitimate windows component used by microsoft services such as windows update or microsoft edge for downloading updates. although this analytic filters known microsoft edge update urls, false positives may still occur from other legitimate enterprise applications or software distribution platforms that utilize bits. additional tuning may be required to account for internal application distribution systems or approved update mechanisms that also rely on bits.

Techniques

Sample rules

Cisco Secure Firewall - Bits Network Activity

Description

The following analytic detects the use of the Background Intelligent Transfer Service (BITS) client application in allowed outbound connections. It leverages logs from Cisco Secure Firewall Threat Defense devices and identifies instances where BITS is used to initiate downloads from non-standard or unexpected domains. While BITS is a legitimate Windows service used for downloading updates, it is also commonly abused by adversaries to stealthily retrieve payloads or tools. This analytic filters out known Microsoft Edge update URLs and focuses on connections that may indicate suspicious or unauthorized file transfers. If confirmed malicious, this could represent a command and control (C2) channel or a download of malware or tooling as part of an attack chain.

Detection logic

`cisco_secure_firewall` EventType=ConnectionEvent action=Allow ClientApplication="BITS" AND NOT url IN ("*://msedge.b.tlu.dl*")

| stats count min(_time) as firstTime max(_time) as lastTime by src_ip, dest, dest_port, transport, rule, url, EVE_Process, ClientApplication, ClientApplicationVersion, action

| `security_content_ctime(firstTime)` 

| `security_content_ctime(lastTime)` 

| `cisco_secure_firewall___bits_network_activity_filter`