You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: detections/application/cisco_asa___aaa_policy_tampering.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ search: |
23
23
"no aaa*"
24
24
)
25
25
| fillnull
26
-
| stats count
26
+
| stats count
27
27
earliest(_time) as firstTime
28
28
latest(_time) as lastTime
29
29
values(user) as user
@@ -41,6 +41,7 @@ how_to_implement: |
41
41
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message ID 111008 and 111010.
42
42
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.
43
43
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
44
45
known_false_positives: |
45
46
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.
46
47
Consider filtering modifications performed where necessary.
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.
29
29
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.
30
30
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
31
32
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.
Copy file name to clipboardExpand all lines: detections/application/cisco_asa___device_file_copy_activity.yml
+18-24Lines changed: 18 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ status: production
7
7
type: Anomaly
8
8
description: |
9
9
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.
12
12
Investigate unexpected file copies, especially from non-administrative accounts, during unusual hours, or when combined with other suspicious activities.
13
13
data_source:
14
14
- Cisco ASA Logs
@@ -19,9 +19,10 @@ search: |
19
19
command IN (
20
20
"*running-config*",
21
21
"*startup-config*",
22
-
"copy system:*",
22
+
"/pcap capture:*",
23
23
"copy disk0:*",
24
-
"copy flash:*"
24
+
"copy flash:*",
25
+
"copy system:*"
25
26
)
26
27
| fillnull
27
28
| stats earliest(_time) as firstTime
@@ -41,30 +42,22 @@ how_to_implement: |
41
42
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message ID 111008 and 111010.
42
43
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.
43
44
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
44
46
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
- 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)`'
- 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$
66
59
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$.
Copy file name to clipboardExpand all lines: detections/application/cisco_asa___device_file_copy_to_remote_location.yml
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,13 @@ version: 1
4
4
date: '2025-11-18'
5
5
author: Nasreddine Bencherchali, Splunk
6
6
status: production
7
-
type: TTP
7
+
type: Anomaly
8
8
description: |
9
9
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.
11
11
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:).
12
12
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.
13
14
data_source:
14
15
- Cisco ASA Logs
15
16
search: |
@@ -19,9 +20,10 @@ search: |
19
20
command IN (
20
21
"*running-config*",
21
22
"*startup-config*",
22
-
"copy system:*",
23
+
"/pcap capture:*",
23
24
"copy disk0:*",
24
-
"copy flash:*"
25
+
"copy flash:*",
26
+
"copy system:*"
25
27
)
26
28
command IN (
27
29
"*ftp:*",
@@ -30,7 +32,7 @@ search: |
30
32
"*smb:*",
31
33
"*scp:*"
32
34
)
33
-
35
+
34
36
| eval remote_protocol = mvappend(
35
37
if(match(command, "tftp:"), "TFTP", null()),
36
38
if(match(command, "ftp:"), "FTP", null()),
@@ -59,11 +61,13 @@ how_to_implement: |
59
61
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message IDs 111008 and 111010.
60
62
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.
61
63
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
62
65
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.
Copy file name to clipboardExpand all lines: detections/application/cisco_asa___logging_disabled_via_cli.yml
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,14 @@ data_source:
17
17
- Cisco ASA Logs
18
18
search: |
19
19
`cisco_asa`
20
-
message_id IN (111008, 111010)
20
+
message_id IN (111008, 111010)
21
21
command IN (
22
22
"*no logging*",
23
23
"*logging disable*",
24
24
"*clear logging*",
25
25
"*no logging host*",
26
26
"*no logging trap*"
27
-
)
27
+
)
28
28
| stats earliest(_time) as firstTime
29
29
latest(_time) as lastTime
30
30
values(user) as user
@@ -33,19 +33,19 @@ search: |
33
33
values(command) as command
34
34
values(src_ip) as src_ip
35
35
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)`
39
39
| `cisco_asa___logging_disabled_via_cli_filter`
40
40
how_to_implement: |
41
41
This search requires Cisco ASA syslog data to be ingested into Splunk via the Cisco Security Cloud TA.
42
42
To ensure this detection works effectively, configure your ASA and FTD devices to generate and forward message ID 111008 and 111010.
43
43
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.
44
44
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
45
46
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.
0 commit comments