Question
How do you install cloudflared on Kali Linux?
Asked by: USER3852
45 Viewed
45 Answers
Responsive Ad After Question
Answer (45)
To install cloudflared on Kali Linux, you typically download the appropriate Debian package or use a package manager. First, update your package list: `sudo apt update`. Then, you can add the Cloudflare repository and install the package: `curl -fsSL https://pkg.cloudflareclient.com/pubkey.gpg | sudo gpg --dearmor -o /usr/share/keyrings/cloudflare-warp-archive-keyring.gpg` followed by `echo 'deb [signed-by=/usr/share/keyrings/cloudflare-warp-archive-keyring.gpg] https://pkg.cloudflareclient.com/ focal main' | sudo tee /etc/apt/sources.list.d/cloudflare-warp.list`. After that, run `sudo apt update` again and then `sudo apt install cloudflared`. Alternatively, you can download the latest Debian `.deb` package directly from the Cloudflare Tunnel releases page and install it using `sudo dpkg -i cloudflared-linux-amd64.deb`.