Skip to content

Commit a2ee006

Browse files
authored
[Radar] Update changelog, glossary and overview page (#20821)
1 parent ca6d454 commit a2ee006

File tree

5 files changed

+128
-13
lines changed

5 files changed

+128
-13
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Leaked Credentials Insights in Cloudflare Radar
3+
description: Expanded security insights with new API endpoints for aggregated authentication request data
4+
products:
5+
- radar
6+
date: 2025-03-18T14:00:00Z
7+
---
8+
9+
[**Radar**](/radar/) has expanded its security insights, providing visibility into aggregate trends in authentication requests,
10+
including the detection of leaked credentials through [leaked credentials detection](/waf/detections/leaked-credentials/) scans.
11+
12+
We have now introduced the following endpoints:
13+
14+
- [`summary`](/api/resources/radar/subresources/leaked_credentials/subresources/summary/): Retrieves summaries of HTTP authentication requests distribution across two different dimensions.
15+
- [`timeseries_group`](/api/resources/radar/subresources/leaked_credentials/subresources/timeseries_groups/): Retrieves timeseries data for HTTP authentication requests distribution across two different dimensions.
16+
17+
The following dimensions are available, displaying the distribution of HTTP authentication requests based on:
18+
19+
- `compromised`: Credential status (clean vs. compromised).
20+
- `bot_class`: [Bot class](/radar/concepts/bot-classes) (human vs. bot).
21+
22+
23+
Dive deeper into leaked credential detection in this [blog post](https://blog.cloudflare.com/password-reuse-rampant-half-user-logins-compromised/) and learn more about the expanded Radar security insights in our [blog post](https://blog.cloudflare.com/cloudflare-radar-ddos-leaked-credentials-bots).

src/content/docs/radar/glossary.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ The Internet Quality Index estimates connection performance under average utiliz
145145

146146
The IQI methodology requires a minimum number of measurements to generate estimates. As a result, graphs for smaller countries and ASNs may display occasional gaps, especially during nighttime. These gaps do not indicate outages. The number of measurements underlying IQI does not necessarily correlate with the volume of traffic observed by Cloudflare in a specific country or ASN.
147147

148+
## Leaked credentials
149+
150+
[Leaked credentials detection](/waf/detections/leaked-credentials/) scans incoming HTTP requests for known authentication patterns from common web apps and any custom detection locations that were configured. Cloudflare Radar provides visibility into aggregate trends in authentication requests, including the detection of leaked credentials.
151+
148152
## Mobile operating systems
149153

150154
The Mobile Operating Systems graph shows the distribution of mobile device requests by operating system, representing trends observed in Internet traffic originating globally or within a given location or autonomous system within the selected time range, based on aggregated data from our network. "Mobile device" includes phones and tablets only, and does not include other types of devices, such as those classified as desktops/laptops, smart TVs, or gaming consoles.

src/content/docs/radar/index.mdx

Lines changed: 96 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,115 @@ head:
88
content: Overview
99
---
1010

11-
import { Description, Feature, Plan } from "~/components"
11+
import {
12+
CardGrid,
13+
Description,
14+
Feature,
15+
LinkButton,
16+
LinkTitleCard,
17+
Plan,
18+
} from "~/components";
1219

1320
<Description>
14-
1521
Get access to Cloudflare's data on global Internet traffic.
1622
</Description>
1723

18-
<Plan type="all" />
19-
20-
[Cloudflare Radar](https://radar.cloudflare.com) is a hub that showcases global Internet traffic, attacks, and technology trends and insights. It is powered by data from Cloudflare’s global network, as well as aggregated and [anonymized](/1.1.1.1/privacy/public-dns-resolver/) data from Cloudflare’s [1.1.1.1 public DNS resolver](/1.1.1.1/).
24+
<Plan type="all"/>
2125

22-
Using Radar's API you can access Cloudflare's data on global Internet traffic.
26+
[Cloudflare Radar](https://radar.cloudflare.com) is a hub that showcases global Internet traffic, attacks, and technology trends and insights. It is powered by data from [Cloudflare’s global network](https://www.cloudflare.com/network/), as well as aggregated and [anonymized data](/1.1.1.1/privacy/public-dns-resolver/) from Cloudflare’s [1.1.1.1 public DNS resolver](/1.1.1.1/).
2327

24-
Radar's API is free, allowing academics, data sleuths and other web enthusiasts to investigate Internet usage across the globe.
28+
Using [Radar's API](/api/resources/radar/) you can access Cloudflare's data on global Internet traffic.
29+
Radar's API is free, allowing academics, technology professionals, and other web enthusiasts to investigate Internet usage across the globe.
2530

2631
Data available via Radar API endpoints is made available under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) license.
2732

28-
***
33+
<LinkButton
34+
variant="primary"
35+
href="/radar/get-started/"
36+
>
37+
Get started
38+
</LinkButton>
39+
40+
<LinkButton
41+
variant="secondary"
42+
href="https://radar.cloudflare.com/"
43+
>
44+
Radar website
45+
</LinkButton>
46+
47+
---
2948

3049
## Features
3150

32-
<Feature header="Make your first API request" href="/radar/get-started/first-request/" cta="Make your first API request">
33-
Start learning how to use Radar's API by making your first request.
51+
<Feature
52+
header="Make your first API request"
53+
href="/radar/get-started/first-request/"
54+
cta="Make your first API request"
55+
>
56+
Start learning how to use Radar's API by making your first request.
3457
</Feature>
3558

36-
<Feature header="Compare data" href="/radar/get-started/making-comparisons/" cta="Compare data">
37-
What to know before making comparisons between locations, [autonomous systems](https://www.cloudflare.com/en-gb/learning/network-layer/what-is-an-autonomous-system/) and more.
59+
<Feature
60+
header="Compare data"
61+
href="/radar/get-started/making-comparisons/"
62+
cta="Compare data"
63+
>
64+
What to know before making comparisons between locations, [autonomous
65+
systems](https://www.cloudflare.com/en-gb/learning/network-layer/what-is-an-autonomous-system/), and more.
3866
</Feature>
67+
68+
<Feature
69+
header="URL Scanner"
70+
href="/radar/investigate/url-scanner/"
71+
cta="Use URL Scanner"
72+
>
73+
Understand the security, performance, technology, and network details of a URL with a publicly shareable report.
74+
</Feature>
75+
76+
---
77+
78+
## More resources
79+
80+
<CardGrid>
81+
82+
<LinkTitleCard
83+
title="Investigate"
84+
href="/radar/investigate/"
85+
icon="document"
86+
>
87+
Explore the diverse data available in Cloudflare Radar, including NetFlows, HTTP requests, DNS queries, and much more.
88+
</LinkTitleCard>
89+
90+
<LinkTitleCard
91+
title="@CloudflareRadar"
92+
href="https://x.com/cloudflareradar"
93+
icon="x.com"
94+
>
95+
Follow @CloudflareRadar on X to learn about Internet trends, as seen by the Cloudflare global network.
96+
</LinkTitleCard>
97+
98+
<LinkTitleCard
99+
title="@cloudflareradar"
100+
href="https://noc.social/@cloudflareradar"
101+
icon="mastodon"
102+
>
103+
Follow @cloudflareradar on Mastodon to learn about Internet trends, as seen by the Cloudflare global network.
104+
</LinkTitleCard>
105+
106+
<LinkTitleCard
107+
title="@radar.cloudflare.com"
108+
href="https://bsky.app/profile/radar.cloudflare.com"
109+
icon="blueSky"
110+
>
111+
Follow @radar.cloudflare.com on Bluesky to learn about Internet trends, as seen by the Cloudflare global network.
112+
</LinkTitleCard>
113+
114+
<LinkTitleCard
115+
title="Cloudflare blog"
116+
href="https://blog.cloudflare.com/tag/cloudflare-radar/"
117+
icon="open-book"
118+
>
119+
Read articles about the latest trends and updates on Cloudflare Radar.
120+
</LinkTitleCard>
121+
122+
</CardGrid>

src/content/docs/radar/investigate/url-scanner.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar:
66

77
---
88

9-
To better understand Internet usage around the world, use Cloudflare's URL Scanner. With Cloudflare's URL Scanner, you have the ability to investigate the details of a domain, IP, URL, or ASN. Cloudflare's URL Scanner is available in the Security Center of the Cloudflare dashboard, [Cloudflare Radar](https://radar.cloudflare.com/scan) and the Cloudflare [API](/api/resources/url_scanner/subresources/scans/).
9+
To better understand Internet usage around the world, use Cloudflare's URL Scanner. With Cloudflare's URL Scanner, you have the ability to investigate the details of a domain, IP, URL, or ASN. Cloudflare's URL Scanner is available in the Security Center of the Cloudflare dashboard, [Cloudflare Radar](https://radar.cloudflare.com/scan), and the Cloudflare [API](/api/resources/url_scanner/).
1010

1111
## Use the API
1212

src/content/release-notes/radar.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ productLink: "/radar/"
55
productArea: Developer platform
66
productAreaLink: /workers/platform/changelog/platform/
77
entries:
8+
- publish_date: "2025-03-18"
9+
title: Add leaked credential checks endpoints
10+
description: |-
11+
* Added [leaked credential checks endpoints](/api/resources/radar/subresources/leaked_credentials/).
812
- publish_date: "2025-02-27"
913
title: Add DNS endpoints
1014
description: |-

0 commit comments

Comments
 (0)