Skip to content

Commit 56c8b06

Browse files
committed
fixes and updates
1 parent 199dde8 commit 56c8b06

14 files changed

+153
-154
lines changed

detections/application/cisco_asa___aaa_policy_tampering.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ search: |
2323
"no aaa*"
2424
)
2525
| fillnull
26-
| stats count
26+
| stats count
2727
earliest(_time) as firstTime
2828
latest(_time) as lastTime
2929
values(user) as user
@@ -41,6 +41,7 @@ how_to_implement: |
4141
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message ID 111008 and 111010.
4242
If your logging level is set to 'Notifications' or higher, these messages should already be included, else we recommend setting an event list that keeps the severity level you are using and adds message IDs 111008 and 111010.
4343
You can find specific instructions on how to set this up here : https://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/63884-config-asa-00.html.
44+
You can also change the severity level of the above message id's to the syslog level you have currently enabled using the logging message syslog_id level severity_level command in global configuration mode. For more information, see Change the Severity Level of a Syslog Message : https://www.cisco.com/c/en/us/td/docs/security/asa/asa922/configuration/general/asa-922-general-config/monitor-syslog.html#ID-2121-000006da
4445
known_false_positives: |
4546
Legitimate AAA configuration modifications may occur during normal administrative activities such as implementing new security policies, adjusting lockout thresholds or troubleshooting authentication issues. These events should be verified against investigated.
4647
Consider filtering modifications performed where necessary.

detections/application/cisco_asa___core_syslog_message_volume_drop.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,31 @@ search: |
1919
message_id="710005","TCP request discarded"
2020
)
2121
| bin _time span=15m
22-
| stats count values(msg_desc) as message_description
23-
values(dest) as dest
22+
| stats count values(msg_desc) as message_description
23+
values(dest) as dest
2424
by _time message_id
2525
| xyseries _time message_id count
2626
| `cisco_asa___core_syslog_message_volume_drop_filter`
2727
how_to_implement: |
2828
This search requires Cisco ASA syslog data to be ingested into Splunk via the Cisco Security Cloud TA. To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward both debug and informational level syslog messages before they are sent to Splunk.
2929
This analytic is designed to be used with comprehensive logging enabled, as it relies on the presence of specific message IDs. You can find specific instructions on how to set this up here : https://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/63884-config-asa-00.html#toc-hId--1451069880.
3030
The search produces a time-series suitable for dashboards to visualize drops across message IDs 302013, 302014, 609002, and 710005.
31+
You can also change the severity level of the above message id's to the syslog level you have currently enabled using the logging message syslog_id level severity_level command in global configuration mode. For more information, see Change the Severity Level of a Syslog Message : https://www.cisco.com/c/en/us/td/docs/security/asa/asa922/configuration/general/asa-922-general-config/monitor-syslog.html#ID-2121-000006da
3132
known_false_positives: |
32-
Planned maintenance, network outages, routing changes, or benign configuration
33-
updates may reduce log volume temporarily. Validate against change management
34-
records and corroborate with device health metrics.
33+
Planned maintenance, network outages, routing changes, or benign configuration updates may reduce log volume temporarily.
34+
Validate against change management records and corroborate with device health metrics.
3535
references:
36-
- https://blog.talosintelligence.com/arcanedoor-new-espionage-focused-campaign-found-targeting-perimeter-network-devices/
37-
- https://sec.cloudapps.cisco.com/security/center/resources/asa_ftd_continued_attacks
38-
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-webvpn-z5xP8EUB
39-
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-http-code-exec-WmfP3h3O
40-
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-webvpn-YROOTUW
41-
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-http-code-exec-WmfP3h3O
42-
- https://www.cisa.gov/news-events/directives/ed-25-03-identify-and-mitigate-potential-compromise-cisco-devices
43-
- https://www.ncsc.gov.uk/news/persistent-malicious-targeting-cisco-devices
36+
- https://blog.talosintelligence.com/arcanedoor-new-espionage-focused-campaign-found-targeting-perimeter-network-devices/
37+
- https://sec.cloudapps.cisco.com/security/center/resources/asa_ftd_continued_attacks
38+
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-webvpn-z5xP8EUB
39+
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-http-code-exec-WmfP3h3O
40+
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-webvpn-YROOTUW
41+
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-http-code-exec-WmfP3h3O
42+
- https://www.cisa.gov/news-events/directives/ed-25-03-identify-and-mitigate-potential-compromise-cisco-devices
43+
- https://www.ncsc.gov.uk/news/persistent-malicious-targeting-cisco-devices
4444
tags:
4545
analytic_story:
46+
- Suspicious Cisco Adaptive Security Appliance Activity
4647
- ArcaneDoor
4748
asset_type: Network
4849
mitre_attack_id:

detections/application/cisco_asa___device_file_copy_activity.yml

Lines changed: 18 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ status: production
77
type: Anomaly
88
description: |
99
This analytic detects file copy activity on Cisco ASA devices via CLI or ASDM.
10-
Adversaries may copy device files including configurations, logs, or system files for reconnaissance, credential extraction, or data exfiltration. While legitimate file operations occur during backups and maintenance, unauthorized copies may indicate malicious activity.
11-
The detection monitors for command execution events (message ID 111008 or 111010) containing copy commands targeting running-config, startup-config, or other system files from disk0:, flash:, or system: locations.
10+
Adversaries may copy device files including configurations, logs, packet captures, or system files for reconnaissance, credential extraction, or data exfiltration. While legitimate file operations occur during backups and maintenance, unauthorized copies may indicate malicious activity.
11+
The detection monitors for command execution events (message ID 111008 or 111010) containing copy commands targeting running-config, startup-config, packet capture files, or other system files from disk0:, flash:, system:, or capture: locations.
1212
Investigate unexpected file copies, especially from non-administrative accounts, during unusual hours, or when combined with other suspicious activities.
1313
data_source:
1414
- Cisco ASA Logs
@@ -19,9 +19,10 @@ search: |
1919
command IN (
2020
"*running-config*",
2121
"*startup-config*",
22-
"copy system:*",
22+
"/pcap capture:*",
2323
"copy disk0:*",
24-
"copy flash:*"
24+
"copy flash:*",
25+
"copy system:*"
2526
)
2627
| fillnull
2728
| stats earliest(_time) as firstTime
@@ -41,30 +42,22 @@ how_to_implement: |
4142
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message ID 111008 and 111010.
4243
If your logging level is set to 'Notifications' or higher, these messages should already be included, else we recommend setting an event list that keeps the severity level you are using and adds message IDs 111008 and 111010.
4344
You can find specific instructions on how to set this up here : https://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/63884-config-asa-00.html.
45+
You can also change the severity level of the above message id's to the syslog level you have currently enabled using the logging message syslog_id level severity_level command in global configuration mode. For more information, see Change the Severity Level of a Syslog Message : https://www.cisco.com/c/en/us/td/docs/security/asa/asa922/configuration/general/asa-922-general-config/monitor-syslog.html#ID-2121-000006da
4446
known_false_positives: |
45-
Legitimate configuration exports may occur during normal administrative activities
46-
such as scheduled automated backups, pre-change configuration snapshots as part of
47-
change management procedures, disaster recovery preparations, configuration audits,
48-
or troubleshooting activities. These events should be verified against backup schedules,
49-
change management tickets, disaster recovery plans, or established configuration
50-
management procedures. Consider filtering exports performed during approved maintenance
51-
windows, by known administrative or backup accounts with proper authorization, to
52-
known backup server destinations, or exports that align with documented backup policies.
47+
Legitimate configuration exports may occur during normal administrative activities. These events should be verified and investigated.
5348
references:
54-
- https://www.cisco.com/c/en/us/td/docs/security/asa/asa-cli-reference/A-H/asa-command-ref-A-H/c1-commands.html
55-
- https://www.cisco.com/c/en/us/td/docs/security/asa/asa-cli-reference/S/asa-command-ref-S/sa-shov-commands.html
56-
- https://www.cisco.com/c/en/us/support/docs/security/asa-5500-x-series-next-generation-firewalls/200657-Configure-Backup-and-Restore-on-ASA.html
49+
- https://blog.talosintelligence.com/arcanedoor-new-espionage-focused-campaign-found-targeting-perimeter-network-devices/
5750
drilldown_searches:
58-
- name: View the detection results for $host$
59-
search: '%original_detection_search% | search host = $host$'
60-
earliest_offset: $info_min_time$
61-
latest_offset: $info_max_time$
62-
- name: View risk events for the last 7 days for $host$
63-
search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ($host$) starthoursago=168 endhoursago=1 | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`'
64-
earliest_offset: $info_min_time$
65-
latest_offset: $info_max_time$
51+
- name: View the detection results for $host$
52+
search: '%original_detection_search% | search host = $host$'
53+
earliest_offset: $info_min_time$
54+
latest_offset: $info_max_time$
55+
- name: View risk events for the last 7 days for $host$
56+
search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ($host$) starthoursago=168 endhoursago=1 | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`'
57+
earliest_offset: $info_min_time$
58+
latest_offset: $info_max_time$
6659
rba:
67-
message: User $user$ executed command to export device configuration from Cisco ASA host $host$.
60+
message: User $user$ executed command $command$ to export device configuration from Cisco ASA host $host$.
6861
risk_objects:
6962
- field: host
7063
type: system
@@ -77,6 +70,7 @@ rba:
7770
tags:
7871
analytic_story:
7972
- Suspicious Cisco Adaptive Security Appliance Activity
73+
- ArcaneDoor
8074
asset_type: Network
8175
mitre_attack_id:
8276
- T1005

detections/application/cisco_asa___device_file_copy_to_remote_location.yml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ version: 1
44
date: '2025-11-18'
55
author: Nasreddine Bencherchali, Splunk
66
status: production
7-
type: TTP
7+
type: Anomaly
88
description: |
99
This analytic detects file copy operations to remote locations on Cisco ASA devices via CLI or ASDM.
10-
Adversaries may exfiltrate device files including configurations, logs, or system data to remote servers using protocols like TFTP, FTP, HTTP, HTTPS, SMB, or SCP. While legitimate backups to centralized servers are common, copies to unexpected destinations may indicate data exfiltration to attacker-controlled infrastructure.
10+
Adversaries may exfiltrate device files including configurations, logs, packet captures, or system data to remote servers using protocols like TFTP, FTP, HTTP, HTTPS, SMB, or SCP. While legitimate backups to centralized servers are common, copies to unexpected destinations may indicate data exfiltration to attacker-controlled infrastructure.
1111
The detection monitors for command execution events (message ID 111008 or 111010) containing copy commands with remote protocol indicators (tftp:, ftp:, http:, https:, smb:, scp:).
1212
Investigate copies to unexpected destinations, from non-administrative accounts, or outside approved maintenance windows.
13+
We recommend adapting the detection filters to exclude known legitimate backup activities.
1314
data_source:
1415
- Cisco ASA Logs
1516
search: |
@@ -19,9 +20,10 @@ search: |
1920
command IN (
2021
"*running-config*",
2122
"*startup-config*",
22-
"copy system:*",
23+
"/pcap capture:*",
2324
"copy disk0:*",
24-
"copy flash:*"
25+
"copy flash:*",
26+
"copy system:*"
2527
)
2628
command IN (
2729
"*ftp:*",
@@ -30,7 +32,7 @@ search: |
3032
"*smb:*",
3133
"*scp:*"
3234
)
33-
35+
3436
| eval remote_protocol = mvappend(
3537
if(match(command, "tftp:"), "TFTP", null()),
3638
if(match(command, "ftp:"), "FTP", null()),
@@ -59,11 +61,13 @@ how_to_implement: |
5961
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message IDs 111008 and 111010.
6062
If your logging level is set to 'Notifications' or higher, these messages should already be included, else we recommend setting an event list that keeps the severity level you are using and add message IDs 111008 and 111010.
6163
You can find specific instructions on how to set this up here : https://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/63884-config-asa-00.html.
64+
You can also change the severity level of the above message id's to the syslog level you have currently enabled using the logging message syslog_id level severity_level command in global configuration mode. For more information, see Change the Severity Level of a Syslog Message : https://www.cisco.com/c/en/us/td/docs/security/asa/asa922/configuration/general/asa-922-general-config/monitor-syslog.html#ID-2121-000006da
6265
known_false_positives: |
63-
Legitimate configuration exports to remote locations may occur during normal administrative
64-
activities. Investigate these events to verify their legitimacy and apply necessary filters.
66+
Legitimate configuration exports to remote locations may occur during normal administrative activities.
67+
Investigate these events to verify their legitimacy and apply necessary filters.
6568
references:
66-
- https://community.cisco.com/t5/security-knowledge-base/asa-how-to-download-images-using-tftp-ftp-http-https-and-scp/ta-p/3109769
69+
- https://community.cisco.com/t5/security-knowledge-base/asa-how-to-download-images-using-tftp-ftp-http-https-and-scp/ta-p/3109769
70+
- https://blog.talosintelligence.com/arcanedoor-new-espionage-focused-campaign-found-targeting-perimeter-network-devices/
6771
drilldown_searches:
6872
- name: View the detection results for $host$
6973
search: '%original_detection_search% | search host = $host$'
@@ -90,6 +94,7 @@ rba:
9094
tags:
9195
analytic_story:
9296
- Suspicious Cisco Adaptive Security Appliance Activity
97+
- ArcaneDoor
9398
asset_type: Network
9499
mitre_attack_id:
95100
- T1005

detections/application/cisco_asa___logging_disabled_via_cli.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ data_source:
1717
- Cisco ASA Logs
1818
search: |
1919
`cisco_asa`
20-
message_id IN (111008, 111010)
20+
message_id IN (111008, 111010)
2121
command IN (
2222
"*no logging*",
2323
"*logging disable*",
2424
"*clear logging*",
2525
"*no logging host*",
2626
"*no logging trap*"
27-
)
27+
)
2828
| stats earliest(_time) as firstTime
2929
latest(_time) as lastTime
3030
values(user) as user
@@ -33,19 +33,19 @@ search: |
3333
values(command) as command
3434
values(src_ip) as src_ip
3535
values(process_name) as process_name
36-
by host
37-
| `security_content_ctime(firstTime)`
38-
| `security_content_ctime(lastTime)`
36+
by host
37+
| `security_content_ctime(firstTime)`
38+
| `security_content_ctime(lastTime)`
3939
| `cisco_asa___logging_disabled_via_cli_filter`
4040
how_to_implement: |
4141
This search requires Cisco ASA syslog data to be ingested into Splunk via the Cisco Security Cloud TA.
4242
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message ID 111008 and 111010.
4343
If your logging level is set to 'Notifications' or higher, these messages should already be included, else we recommend setting an event list that keeps the severity level you are using and adds message IDs 111008 and 111010.
4444
You can find specific instructions on how to set this up here : https://www.cisco.com/c/en/us/support/docs/security/pix-500-series-security-appliances/63884-config-asa-00.html.
45+
You can also change the severity level of the above message id's to the syslog level you have currently enabled using the logging message syslog_id level severity_level command in global configuration mode. For more information, see Change the Severity Level of a Syslog Message : https://www.cisco.com/c/en/us/td/docs/security/asa/asa922/configuration/general/asa-922-general-config/monitor-syslog.html#ID-2121-000006da
4546
known_false_positives: |
46-
Administrators may intentionally disable or modify logging during maintenance,
47-
troubleshooting, or device reconfiguration. These events should be verified
48-
against approved change management activities.
47+
Administrators may intentionally disable or modify logging during maintenance, troubleshooting, or device reconfiguration.
48+
These events should be verified against approved change management activities.
4949
references:
5050
- https://www.cisco.com/site/us/en/products/security/firewalls/adaptive-security-appliance-asa-software/index.html
5151
- https://sec.cloudapps.cisco.com/security/center/resources/asa_ftd_continued_attacks

0 commit comments

Comments
 (0)