cloudflare-trace-api icon indicating copy to clipboard operation
cloudflare-trace-api copied to clipboard

Get IP Address, TimeStamp, User Agent, Country Code, IATA, HTTP Version, TLS/SSL Version & more by Cloudflare

Results 4 cloudflare-trace-api issues
Sort by recently updated
recently updated
newest added

```js async function getCloudflareJSON(){ let data = await fetch('https://1.0.0.1/cdn-cgi/trace').then(res=>res.text()) let arr = data.trim().split('\n').map(e=>e.split('=')) return Object.fromEntries(arr) } getCloudflareJSON().then(console.log) ``` **Output:** ```js {fl: "202f225", h: "1.0.0.1", ip: "47.37.137.777", ts: "1625581799.09", visit_scheme: "https", ...

https://community.cloudflare.com/t/what-does-the-fl-field-in-cdn-cgi-trace-represent/150595

Welcome to [WhiteSource Bolt for GitHub](https://github.com/marketplace/whitesource-bolt)! This is an onboarding PR to help you understand and configure settings before WhiteSource starts scanning your repository for security vulnerabilities. :vertical_traffic_light: WhiteSource Bolt...

> Hello, > > I've been using this website > https://cloudflare-quic.com/b/headers > To deliver (display on website) visitor's country flag. > > This is the code used: https://pastebin.com/1Gzvc9PP > >...