Skip to content

Commit 574380d

Browse files
vs-mgthomasgauvin
authored andcommitted
Release-Jul-14-2025 (#23644)
1 parent eff27e2 commit 574380d

File tree

3 files changed

+123
-16
lines changed

3 files changed

+123
-16
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: "2025-07-14"
3+
type: table
4+
pcx_content_type: release-notes
5+
sidebar:
6+
order: 783
7+
tableOfContents: false
8+
---
9+
10+
import { RuleID } from "~/components";
11+
12+
This week’s vulnerability analysis highlights emerging web application threats that exploit modern JavaScript behavior and SQL parsing ambiguities. Attackers continue to refine techniques such as attribute overloading and obfuscated logic manipulation to evade detection and compromise front-end and back-end systems.
13+
14+
**Key Findings**
15+
16+
- XSS – Attribute Overloading: A novel cross-site scripting technique where attackers abuse custom or non-standard HTML attributes to smuggle payloads into the DOM. These payloads evade traditional sanitization logic, especially in frameworks that loosely validate attributes or trust unknown tokens.
17+
- XSS – onToggle Event Abuse: Exploits the lesser-used onToggle event (triggered by elements like `<details>`) to execute arbitrary JavaScript when users interact with UI elements. This vector is often overlooked by static analyzers and can be embedded in seemingly benign components.
18+
- SQLi – Obfuscated Boolean Logic: An advanced SQL injection variant that uses non-standard Boolean expressions, comment-based obfuscation, or alternate encodings (for example, `/*!true*/`, `AND/**/1=1`) to bypass basic input validation and WAF signatures. This technique is particularly dangerous in dynamic query construction contexts.
19+
20+
**Impact**
21+
22+
These vulnerabilities target both user-facing components and back-end databases, introducing potential vectors for credential theft, session hijacking, or full data exfiltration. The XSS variants bypass conventional filters through overlooked HTML behaviors, while the obfuscated SQLi enables attackers to stealthily probe back-end logic, making them especially difficult to detect and block.
23+
24+
<table style="width: 100%">
25+
<thead>
26+
<tr>
27+
<th>Ruleset</th>
28+
<th>Rule ID</th>
29+
<th>Legacy Rule ID</th>
30+
<th>Description</th>
31+
<th>Previous Action</th>
32+
<th>New Action</th>
33+
<th>Comments</th>
34+
</tr>
35+
</thead>
36+
<tbody>
37+
<tr>
38+
<td>Cloudflare Managed Ruleset</td>
39+
<td>
40+
<RuleID id="a8918353372b4191b10684eb2aa3d845" />
41+
</td>
42+
<td>100798</td>
43+
<td>XSS - Attribute Overloading</td>
44+
<td>Log</td>
45+
<td>Block</td>
46+
<td>This is a New Detection</td>
47+
</tr>
48+
<tr>
49+
<td>Cloudflare Managed Ruleset</td>
50+
<td>
51+
<RuleID id="31dd299ba375414dac9260c037548d06" />
52+
</td>
53+
<td>100799</td>
54+
<td>XSS - OnToggle</td>
55+
<td>Log</td>
56+
<td>Block</td>
57+
<td>This is a New Detection</td>
58+
</tr>
59+
<tr>
60+
<td>Cloudflare Managed Ruleset</td>
61+
<td>
62+
<RuleID id="7663ea44178441a0b3205c145563445f" />
63+
</td>
64+
<td>100800</td>
65+
<td>SQLi - Obfuscated Boolean</td>
66+
<td>Log</td>
67+
<td>Block</td>
68+
<td>This is a New Detection</td>
69+
</tr>
70+
</tbody>
71+
</table>

src/content/docs/waf/change-log/scheduled-changes.mdx

Lines changed: 47 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,36 +25,69 @@ import { RSSButton, RuleID } from "~/components";
2525
</thead>
2626
<tbody>
2727
<tr>
28-
<td>2025-07-07</td>
2928
<td>2025-07-14</td>
29+
<td>2025-07-21</td>
3030
<td>Log</td>
31-
<td>100798</td>
31+
<td>100804</td>
3232
<td>
33-
<RuleID id="a8918353372b4191b10684eb2aa3d845" />
33+
<RuleID id="6ab3bd3b58fb4325ac2d3cc73461ec9e" />
3434
</td>
35-
<td>XSS - Attribute Overloading</td>
35+
<td>BerriAI - SSRF - CVE:CVE-2024-6587</td>
3636
<td>This is a New Detection</td>
37+
</tr>
38+
<tr>
39+
<td>2025-07-14</td>
40+
<td>2025-07-21</td>
41+
<td>Log</td>
42+
<td>100805</td>
43+
<td>
44+
<RuleID id="0e17d8761f1a47d5a744a75b5199b58a" />
45+
</td>
46+
<td>Wing FTP Server - Remote Code Execution - CVE:CVE-2025-47812</td>
47+
<td>This is a New Detection</td>
3748
</tr>
3849
<tr>
39-
<td>2025-07-07</td>
40-
<td>2025-07-14</td>
50+
<td>2025-07-14</td>
51+
<td>2025-07-21</td>
52+
<td>Log</td>
53+
<td>100807</td>
54+
<td>
55+
<RuleID id="81ace5a851214a2f9c58a1e7919a91a4" />
56+
</td>
57+
<td>Infoblox NetMRI - Command Injection - CVE:CVE-2025-32813</td>
58+
<td>This is a New Detection</td>
59+
</tr>
60+
<tr>
61+
<td>2025-07-14</td>
62+
<td>2025-07-21</td>
4163
<td>Log</td>
42-
<td>100799</td>
64+
<td>100808</td>
4365
<td>
44-
<RuleID id="31dd299ba375414dac9260c037548d06" />
66+
<RuleID id="cd8fa74e8f6f476c9380ae217899130f" />
4567
</td>
46-
<td>XSS - OnToggle</td>
68+
<td>Citrix Netscaler ADC - Buffer Error - CVE:CVE-2025-5777</td>
4769
<td>This is a New Detection</td>
4870
</tr>
4971
<tr>
50-
<td>2025-07-07</td>
51-
<td>2025-07-14</td>
72+
<td>2025-07-14</td>
73+
<td>2025-07-21</td>
74+
<td>Log</td>
75+
<td>100809</td>
76+
<td>
77+
<RuleID id="e012c7bece304a1daf80935ed1cf8e08" />
78+
</td>
79+
<td>Citrix Netscaler ADC - Information Disclosure - CVE:CVE-2023-4966</td>
80+
<td>This is a New Detection</td>
81+
</tr>
82+
<tr>
83+
<td>2025-07-14</td>
84+
<td>2025-07-21</td>
5285
<td>Log</td>
53-
<td>100800</td>
86+
<td>100810</td>
5487
<td>
55-
<RuleID id="7663ea44178441a0b3205c145563445f" />
88+
<RuleID id="5d348a573a834ffd968faffc6e70469f" />
5689
</td>
57-
<td>SQLi - Obfuscated Boolean</td>
90+
<td>Akamai CloudTest - XXE - CVE:CVE-2025-49493</td>
5891
<td>This is a New Detection</td>
5992
</tr>
6093
</tbody>

src/content/release-notes/waf.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@ productLink: "/waf/"
55
productArea: Application security
66
productAreaLink: /fundamentals/reference/changelog/security/
77
entries:
8-
- publish_date: "2025-07-07"
9-
scheduled_date: "2025-07-14"
8+
- publish_date: "2025-07-14"
9+
scheduled_date: "2025-07-21"
1010
individual_page: true
1111
scheduled: true
1212
link: "/waf/change-log/scheduled-changes/"
13+
- publish_date: "2025-07-14"
14+
individual_page: true
15+
link: "/waf/change-log/2025-07-14/"
1316
- publish_date: "2025-07-07"
1417
individual_page: true
1518
link: "/waf/change-log/2025-07-07/"

0 commit comments

Comments
 (0)