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
description: Detections are from Cisco Secure App which detects exploited vulnerabilities against business applications.
8
+
description: |
9
+
The following analytic is to leverage alerts from Cisco SecureApp, which identifies and monitors exploit attempts targeting business applications. The primary attack observed involves exploiting vulnerabilities in web applications, including injection attacks (SQL, API abuse), deserialization vulnerabilities, remote code execution attempts, LOG4J and zero day attacks. These attacks are typically aimed at gaining unauthorized access, exfiltrating sensitive data, or disrupting application functionality.
10
+
11
+
Cisco SecureApp provides real-time detection of these threats by analyzing application-layer events and correlating attack behavior with known vulnerability signatures. This detection methodology helps the Security Operations Center (SOC) by:
12
+
13
+
* Identifying active exploitation attempts in real-time, allowing for quicker incident response.
14
+
* Categorizing attack severity to prioritize remediation efforts based on risk level.
15
+
* Providing visibility into attacker tactics, including source IP, attack techniques, and affected applications.
16
+
* Generating risk-based scoring and contextual alerts to enhance decision-making within SOC workflows.
17
+
* Helping analysts determine whether an attack was merely an attempt or if it successfully exploited a vulnerability.
18
+
19
+
By leveraging this information, SOC teams can proactively mitigate security threats, patch vulnerable applications, and enforce security controls to prevent further exploitation.
risk_score=0 AND attackOutcome="ATTEMPTED", "medium",
25
37
risk_score=0, "low",
26
38
risk_score=0 AND attackOutcome="OBSERVED", "low"
27
-
)
39
+
)
28
40
| eval risk_message=case(
29
-
(signature="API" OR signature="LOG4J" OR signature="SSRF"),
30
-
"An ".attackOutcome." ".signature." vulnerability is attempted to be abused from ".src_category." ip address ".src_ip." and was seen connecting to server ".dest_nt_host." hosting application ".app_name." and possibly exfiltrating data to ".socketOut."",
31
-
(signature="MALIP" OR signature="SQL"),
32
-
"A vulnerability is being ".attackOutcome." to be abused from ".src_category." ip address ".src_ip." and was seen connecting to server ".dest_nt_host." hosting application ".app_name.".",
33
-
(signature="DESEREAL"),
34
-
"The application ".app_name." deserializes untrusted data without sufficiently verifying that the resulting data will be valid. Data which is untrusted cannot be trusted to be well formed. Malformed data or unexpected data could be used to abuse application logic, deny service, or execute arbitrary code, when deserialized."
how_to_implement: __UPDATE__ how to implement your search
39
-
known_false_positives: __UPDATE__ known false positives for your search
41
+
(signature="API" OR signature="LOG4J" OR signature="SSRF"), "An ".attackOutcome." ".signature." vulnerability is attempted to be abused from ".src_category." IP address ".src_ip." and was seen connecting to server ".dest_nt_host." hosting application ".app_name." and possibly exfiltrating data to ".socketOut."",
42
+
(signature="MALIP" OR signature="SQL"), "A vulnerability is being ".attackOutcome." to be abused from ".src_category." IP address ".src_ip." and was seen connecting to server ".dest_nt_host." hosting application ".app_name.".",
43
+
(signature="DESEREAL"), "The application ".app_name." deserializes untrusted data without sufficiently verifying that the resulting data will be valid. Data which is untrusted cannot be trusted to be well-formed. Malformed data or unexpected data could be used to abuse application logic, deny service, or execute arbitrary code, when deserialized."
44
+
)
45
+
| `cisco_secure_application_alerts_filter`'
46
+
how_to_implement: In order to properly run this search, you need to ingest alerts data from AppD SecureApp, specifically ingesting data via HEC. You will also need to ensure that the data is going to sourcetype appdynamics_security. You will need to install the Splunk Add-on for AppDynamics. This add-on will give the needed field aliases to properly run this search. In a future update you will be able to run this detection if ingesting data via the TA.
manual_test: We are dynamically creating the risk_score field based on the severity of the alert in the SPL and that supersedes the risk score set in the detection. Setting these to manual test since otherwise we fail integration testing. The detection is also failing on unit-testing as some of the fields set in the observables are empty.
0 commit comments