Home New Trending Search
About Privacy Terms
#
#cloudflare
Posts tagged #cloudflare on Bluesky
Post image

Thinking of offloading FFmpeg to Cloudflare Workers? Think again. This deep dive explains why Containers + R2 are the real play for media processing, and the critical security…

thepixelspulse.com/posts/offloading-ffmpeg-...

#cloudflare #ffmpeg #mediaprocessing

1 0 0 0
Awakari App

The Day the Maps Went Blank: Unpacking the Cloudflare BYOIP BGP Outage of 2026 Imagine waking up, getting in your car, and turning on your GPS, only to find that every major highway has seemingly v...

#cloudflare #technology #devops #software-engineering #cybersecurity

Origin | Interest | Match

1 0 0 0
Post image

Der gesamte Datenverkehr von #Signal läuft über die #Clouds von

#Google #Microsoft #Amazon & #Cloudflare

Hat #Kuketz selber vor über 5 Jahren veröffentlicht:
www.kuketz-blog.de/signal-jegli...

Er sagt auch selber, dass die #SignalApp dem #CloudAct unterliegt:

2 1 0 0

Bei #Signal geht der gesamte Traffic über die #Clouds von #Google #Microsoft #Amazon & #Cloudflare

Das ist seit vielen Jahren bekannt und noch heute so:
www.kuketz-blog.de/signal-jegli...

Via #CloudAct haben #NSA #CIA #FBI ect. vollen Zugriff darauf:
de.wikipedia.org/wiki/CLOUD_Act

#UnPlugBigTech

0 0 1 0
CLOUD Act – Wikipedia

Bei #Signal geht der gesamte Traffic über die #Clouds von #Google #Microsoft #Amazon & #Cloudflare

Das ist seit vielen Jahren bekannt und noch heute so:
www.kuketz-blog.de/signal-jegli...

Via #CloudAct haben #NSA #CIA #FBI ect. vollen Zugriff darauf:
de.wikipedia.org/wiki/CLOUD_Act

#UnPlugBigTech

0 0 0 0
Preview
Säpo söker spioner som kan hålla tyst – men läcker deras identitet till USA "Du bör inte berätta att du sökt tjänst hos Säkerhetspolisen för andra personer än dina närmast berörda."

Det är så pinsamt dåligt av SÄPO att inte ha bättre koll än så här (och de är inte de enda) 🤔😑

Det finns andra sätt att få till en stabil och tålig infrastruktur🥸

webperf.se/articles/sap...

#sverige #svpol #cybersec #cloudflare #infosec #dataskydd #dataprotection #gdpr

1 0 1 0
Understanding Observability and Implementing OpenTelemetry for Cloudflare API Gateway
Understanding Observability and Implementing OpenTelemetry for Cloudflare API Gateway Watch the full tutorial on YouTube.

Understanding Observability and Implementing OpenTelemetry for Cloudflare API Gateway

In 2026, the complexity of distributed systems has rendered t...

#Observability #OpenTelemetry #Cloudflare #APIGateway

Watch here: https://www.youtube.com/watch?v=1xeLXZAxTy4

0 0 0 0
Post image

Credential Theft Surge As Attackers Exploit Cloudflare Anti‑Security Service platforms like CloudFlare have long been heralded for providing robust protection for legitimate websites, offering se...

#Cloudflare #Cyber #Security #News #Phishing #Cyber #security #news

Origin | Interest | Match

0 0 0 0
Preview
Cloudflare Cloudflare is a global network designed to make everything you connect to the Internet secure, private, fast, and reliable.

The latest update for #Cloudflare includes "Announcing Cloudflare Account Abuse Protection: prevent fraudulent attacks from bots and humans" and "#AI Security for Apps is now generally available".

#Cybersecurity #SASE #ZeroTrust https://opsmtrs.com/41KKv1X

0 0 0 0
Preview
#95 - Are Internet Companies Becoming Too Big To ‘Fail’ When Cloudflare went down, huge parts of the internet went with it. ZeroTier CEO Andrew Gault joins DIY Cyber Guy to reveal why the internet is becoming “too big to fail” — and how resilient networks ...

When #Cloudflare went down, huge parts of the internet went with it. On a recent episode of the DIY Cyber Guy Podcast, #ZeroTier CEO Andrew Gault breaks down why the internet is becoming “too big to fail,” and why resilient networks are no longer optional. Listen here. #cybersecurity

0 0 0 0
Preview
Blocking Crawls From Cloudflare's Browser Crawl Endpoint Earlier this week, Cloudflare announced the introduction of their Browser Crawl Endpoint. This allows Cloudflare users to crawl an entire website by making a _single_ API call to the Browser rendering service. Although the browser rendering service honours robots.txt they don't define a specific User-Agent that the service will check for, apparently instead expecting website operators to disallow **all** user agents if they want to keep Cloudflare out. However, they have also documented that the service includes Cloudflare specific request headers, allowing requests to be blocked by checking for those. This post details how to achieve that on BunnyCDN, Nginx and Openresty. * * * ### The Headers The relevant header _names_ are documented here. However, unhelpfully, Cloudflare have not provided example/expected values so I had to go digging. `cf-brapi-request-id` contains a unique request ID so, although you can check for the existence of it, relying on the value being a consistent format may be unwise. `Signature-agent` is a little bit more useful. The automatic request headers documentation indicates that the value will point to a path under `https://web-bot-auth.cloudflare-browser-rendering-085.workers.dev/`. It is, however, unclear whether this will always be the case (the inclusion of a number suggests that it may not). * * * ### BunnyCDN BunnyCDN allows the creation of edge rules which can match against request headers. Although they don't provide an explicit way to test for the existence of a header, their glob support allows us to achieve the same effect: Action: Block Request Conditions: Match Any | | Request Header Header Name: Signature-agent Value: https://web-bot-auth.cloudflare-browser-rendering* | | Request Header Header Name: cf-brapi-request-id Value: * Within the web UI, the conditions look like this: * * * ### Nginx Requests can also be blocked in Nginx: if ($http_signature_agent ~ "^https://web-bot-auth.cloudflare-browser-rendering(.*)") { return 403; } if ($http_cf_brapi_request_id){ return 403; } Note: although _if is evil_ it's considered that using `return` is 100% safe. * * * #### OpenResty If you're using OpenResty you can still use the Nginx config, but can also achieve the same in LUA: local h = ngx.req.get_headers() if h["cf-brapi-request-id"] then return ngx.exit(403) end if h["signature-agent"] and h["signature-agent"] ~= "https://web-bot-auth.cloudflare-browser-rendering*" then return ngx.exit(403) end This snippet can easily be included in a `header_filter_by_lua` block with custom response headers added for debugging purposes: header_filter_by_lua ' local h = ngx.req.get_headers() if h["cf-brapi-request-id"] then ngx.header["x-reason"] = "Foxtrot Oscar my old buddy" return ngx.exit(403) end if h["signature-agent"] and h["signature-agent"] ~= "https://web-bot-auth.cloudflare-browser-rendering*" then ngx.header["x-reason"] = "Sign this..." return ngx.exit(403) end '; * * * ### Conclusion I already have more than enough unwanted traffic hitting my servers without Cloudflare giving others an off-the-shelf ability to one-shot my services. To give Cloudflare their dues, though, they have at least documented how to block their browser rendering service. It could _perhaps_ have been more clearly documented, but the information is at least there. Still, it would have been nice if they could have defined a _specific_ user-agent to be added to `robots.txt` rather than expecting people to check headers on every request.

Blocking Crawls From Cloudflare's Browser Crawl Endpoint
Author: Ben Tasker

www.bentasker.co.uk/posts/documentation/gene...

#bots #bunnycdn #cloudflare #nginx #openresty

0 0 0 0
White text on a dark blue background reads, “Hackers Use Cloudflare Human Check to Hide Microsoft 365 Phishing Pages”. Underneath, Hackread is listed as the source.

White text on a dark blue background reads, “Hackers Use Cloudflare Human Check to Hide Microsoft 365 Phishing Pages”. Underneath, Hackread is listed as the source.

“Hackers Use Cloudflare Human Check to Hide Microsoft 365 Phishing Pages” — Hackread

#PhishingNews #Hack #Cloudflare

0 0 0 0
Preview
GitHub - sdn3rd/thehole Contribute to sdn3rd/thehole development by creating an account on GitHub.

Shipped a browser game in a single HTML file — no framework, no build, no dependencies.

Server-side anti-cheat replays every round. Client never sends a score.

React 18 from CDN + Cloudflare Pages + KV. ~2300 lines.

#indiedev #gamedev #webdev #javascript #cloudflare #opensource

9 2 1 0
Preview
Hackers Use Cloudflare Human Check to Hide Microsoft 365 Phishing Pages Attackers are abusing Cloudflare Turnstile verification to block security scanners and hide Microsoft 365 phishing pages from detection.

Hackers are abusing Cloudflare’s “prove you’re human” check to hide fake Microsoft 365 login pages. The verification step blocks security scanners and helps phishing sites stay online longer.

Read: hackread.com/hackers-clou...

#CyberSecurity #Microsoft365 #Phishing #Cloudflare #Scam

1 1 0 0

Shopify is reportedly down for hundreds of users right now. Are you one of them? #Shopify #ShopifyDown #Cloudflare
community.designtaxi.com/topic/24914-is-shopify-d...

0 0 0 0
Video thumbnail

Kein Cloudflare #cdn #cloudflare #business #maninthemiddle #datenschutz #datensicherheit #erfolg

0 0 0 0
Original post on fosstodon.org

Can someone help us make our website more search-engine-friendly? It's a work in progress, built by #Quarto, hosted on #GitHub Pages, and served via a #CloudFlare CDN.

Quarto has a bunch of features for adding metadata, etc. Here is the GitHub repo for the #website

#seo #opensource #staticsite […]

1 0 0 0

Crunchyroll seems to be down for hundreds of viewers right now. Are you one of them? #Crunchyroll #CrunchyrollDown #Cloudflare community.designtaxi.com/topic/24847-is-crunchyro...

0 0 0 0
Preview
PocketMux — your tmux sessions, in your pocket Secure, private remote access to tmux sessions from your phone. End-to-end encrypted, zero-knowledge server.

⏰ Coming Soon! 🚀

📱 PocketMux

Your tmux sessions, in your pocket. 🤳

A native mobile app that connects directly to your existing tmux sessions.

🔐 End-to-end encrypted
🤝 Peer-to-peer connected
🙅 No account required

#tmux #pmux #webrtc #terminal #remote #TURN #STUN #cloudflare #privacy #security

1 0 0 1
home/overview

home/overview

新的Cloudflare Dashboard ??敲好看!

#cloudflare #dashboard

0 0 0 0
Post image

Cloudflare patches critical Pingora vulnerabilities enabling request smuggling & cache poisoning. Immediate update to v0.8.0 recommended. #CyberSecurity #Cloudflare #Pingora #SecurityUpdate Link: thedailytechfeed.com/cloudflare-f...

0 0 0 0

I am having such a blast with all this server work but I think it's time to get the sewing machine working on some examples for the site, and some practice so the giveaway paci clip is the best quality this woof can muster!

#cloudflare #selfhosted #littlespace #kidfur
Stream tonight!

3 0 0 0
Generating OG images at the edge on Cloudflare Matt Rothenberg walks through how to generate dynamic Open Graph images on Cloudflare Workers. A practical guide covering the full setup from rendering to caching.

🔗 Generating OG images at the edge on Cloudflare
#performance #caching #edge #cloudflare #opengraph

2 1 0 0
Original post on webpronews.com

How ‘Poison Pill’ Pages Are Fighting Back Against AI Scrapers and Malicious Bots Companies are deploying "poison pill" honeypot pages to feed malicious AI scrapers corrupted data, turni...

#AISecurityPro #AI #scraping #defense #bot #traffic #protection […]

[Original post on webpronews.com]

0 0 0 0
Preview
The most-seen UI on the Internet? Redesigning Turnstile and Challenge Pages We serve 7.6 billion challenges daily. Here’s how we used research, AAA accessibility standards, and a unified architecture to redesign the Internet’s most-seen user interface.

The Most-Seen UI on the Internet? Redesigning Turnstile and Challenge Pages, by @cloudflare@noc.social:

blog.cloudflare.com/the-most-seen-ui-on-the-...

#cloudflare

0 0 0 0
Post image

Recommended Cloudflare Performance & Security Settings (Guide) Cloudflare is a great tool for website performance and security. They have a whole suite of tools to help with performance and sec...

#Blog #Linux #cloudflare #cybersecurity #hosting #security

Origin | Interest | Match

0 0 0 0
Post image

I’m building my own new social platform for people into mostly crypto but also AI, and politics. A place for real conversations and open ideas.

Still early and private. More soon.

#crypto #indiedev #app #developer #website #python #custombackend #cloudflare

6 0 0 0
Preview
Standardizing Post-Quantum IPsec: Cloudflare Adopts Hybrid ML-KEM to Replace Ciphersuite Bloat Cloudflare has extended hybrid post-quantum encryption to IPsec and WAN traffic, standardizing its SASE stack ahead of the NIST 2030 deadline. By adopting a streamlined ML-KEM key exchange, the move a...

Cloudflare brings post-quantum encryption to IPsec using hybrid ML-KEM, cutting through ciphersuite bloat while defending against "harvest now, decrypt later" attacks. No special hardware needed, no extra cost. #postquantum #cloudflare #cybersecurity #ipsec www.infoq.com/news/2026/03...

1 2 0 0
Preview
Cloudflare Releases Experimental Next.js Alternative Built With AI Assistance Cloudflare released vinext, an experimental Next.js reimplementation built on Vite by one engineer, with AI guidance over one week, for $1,100. Early benchmarks show 4.4x faster builds, but Cloudflare...

Cloudflare rebuilt Next.js on Vite in a week using AI; 4.4x faster builds, 57% smaller bundles, $1,100 in tokens. Meet #vinext, the experiment that's shaking up the frontend world.
#cloudflare #nextjs #wbdev #ai www.infoq.com/news/2026/03...

2 2 0 0
Preview
LaLiga la lía otra vez: bloquea Glovo y webs de esquí La ofensiva de LaLiga contra la piratería ya alcanza a Glovo y webs de esquí, y abre un choque judicial que sacude Internet en España entera. La ofensiva de LaLiga contra la piratería audiovisual ha e...

LaLiga la lía otra vez: bloquea Glovo y webs de esquí #LaLiga #Glovo #Cloudflare #JavierTebas #MatthewPrince #Piratería #Internet #Bloqueos #Snow2Day #WebsDeEsquí #10deMarzo #FelizMartes #España #Tecnología #Actualidad donporque.com/laliga-bloqu...

0 0 0 0