Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ViRb3/wgcf
🚤 Cross-platform, unofficial CLI for Cloudflare Warp
https://github.com/ViRb3/wgcf
client cloudflare plus security vpn warp wireguard
Last synced: about 1 month ago
JSON representation
🚤 Cross-platform, unofficial CLI for Cloudflare Warp
- Host: GitHub
- URL: https://github.com/ViRb3/wgcf
- Owner: ViRb3
- License: mit
- Created: 2020-04-13T20:41:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T00:24:26.000Z (about 2 months ago)
- Last Synced: 2024-10-22T19:25:59.833Z (about 2 months ago)
- Topics: client, cloudflare, plus, security, vpn, warp, wireguard
- Language: Go
- Homepage:
- Size: 463 KB
- Stars: 6,200
- Watchers: 66
- Forks: 685
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - ViRb3/wgcf - 🚤 Cross-platform, unofficial CLI for Cloudflare Warp (Go)
- awesome-wireguard - wgcf - Cross-platform, unofficial CLI for Cloudflare Warp. (Projects / Services based on WireGuard)
README
# wgcf
> wgcf is an unofficial, cross-platform CLI for [Cloudflare Warp](https://1.1.1.1/)![](https://img.shields.io/drone/build/ViRb3/wgcf)
![](https://img.shields.io/github/issues/ViRb3/wgcf)
![](https://img.shields.io/github/downloads/ViRb3/wgcf/total)
![](https://img.shields.io/github/languages/code-size/ViRb3/wgcf)## Features
- Register new account
- Change license key to use existing Warp+ subscription
- Generate WireGuard profile
- Check account status
- Print trace information to debug Warp/Warp+ status## Download
You can find pre-compiled binaries on the [releases page](https://github.com/ViRb3/wgcf/releases).## Usage
Run `wgcf` in a terminal without any arguments to display the help screen. All commands and parameters are documented.### Register new account
Run the following command in a terminal:
```bash
wgcf register
```
The new account will be saved under `wgcf-account.toml`### Generate WireGuard profile
Run the following command in a terminal:
```bash
wgcf generate
```
The WireGuard profile will be saved under `wgcf-profile.conf`. For more information on how to use it, please check the official [WireGuard Quick Start](https://www.wireguard.com/quickstart/).#### Maximum transmission unit (MTU)
To ensure maximum compatibility, the generated profile will have a MTU of 1280, just like the official Android app. If you are experiencing performance issues, you may be able to improve your speed by increasing this value. For more information, please check [#40](https://github.com/ViRb3/wgcf/issues/40).### Add a license key
If you have an existing Warp+ subscription, for example on your phone, you can bind the account generated by this tool to your phone's account, sharing its Warp+ status. Please note that there is a current limit of maximum of 5 linked devices active at a time.First, get your Warp+ account license key. To view it on Android:
1. Open the `1.1.1.1` app
2. Click on the hamburger menu button on the top-right corner
3. Navigate to: `Account` > `Key`Now, back to wgcf.
> :warning: If you have an existing account, you will need to delete it and create a new one ([!355](https://github.com/ViRb3/wgcf/pull/355), [!425](https://github.com/ViRb3/wgcf/pull/425)):
> ```wgcf register
> wgcf register
> ```
Then, immediately add your key to `wgcf-account.toml`. Finally, run:```bash
wgcf update
wgcf generate
```### Check device status
Run the following command in a terminal:
```bash
wgcf status
```### Verify Warp/Warp+ works
Connect to the WireGuard profile [generated](#generate-wireguard-profile) by this tool, then run:
```bash
wgcf trace
```
If you look at the last line, it should say `warp=on` or `warp=plus`, depending on whether you have Warp or Warp+ respectively.## Development
### Sub-packages
- [api_tests](api_tests/main.go) - Tests for API documentation generation
- [spec_format](spec_format/main.go) - OpenAPI3 specification formatter to post-process the spec generated by Optic
### API
This project uses [Optic](https://github.com/opticdev/optic) to automatically generate API documentation using the tests defined in [api_tests](api_tests/main.go). These tests cover all endpoints used by wgcf. The documentation is exported as an OpenAPI3 [specification](openapi-spec.json), which is then used with [openapi-generator](https://openapi-generator.tech/) to generate the Go client API code under [wgcf/openapi](openapi/client.go).To update the API documentation, [install Optic](https://github.com/opticdev/optic/releases/latest), then run:
```bash
api start
```
Resolve and save all the differences in the Web UI.To regenerate the Go client API code, [install openapi-generator](https://openapi-generator.tech/docs/installation), then run:
```bash
bash generate-api.sh
```
This script supports both Linux and WSL.## Notice of Non-Affiliation and Disclaimer
We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Cloudflare, or any of its subsidiaries or its affiliates. The official Cloudflare website can be found at https://www.cloudflare.com/.The names Cloudflare Warp and Cloudflare as well as related names, marks, emblems and images are registered trademarks of their respective owners.