Skip to content

proxy your traffic through CDN using websocket

License

Notifications You must be signed in to change notification settings

qwenode/go-cdn2proxy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-cdn2proxy

proxy your traffic through CDN using websocket

what does it do

  • you can use this as a library in your project: go get -v -u github.com/jm33-m0/go-cdn2proxy
  • simply put, go-cdn2proxy forwards your traffic through websocket, which can be implemented behind most CDNs
  • anything that supports socks5 proxy can use go-cdn2proxy

for me, i wrote this for emp3r0r

example

server

package main

import (
    "log"

    cdn2proxy "github.com/jm33-m0/go-cdn2proxy"
)

func main() {
    err := cdn2proxy.StartServer("9000", "127.0.0.1:8000", os.Stderr)
    if err != nil {
        log.Fatal(err)
    }
}

client

package main

import (
    "log"

    cdn2proxy "github.com/jm33-m0/go-cdn2proxy"
)

func main() {
    err := cdn2proxy.StartProxy("127.0.0.1:10888", "wss://example.com/ws", "https://9.9.9.9/dns-query")
    if err != nil {
        log.Fatal(err)
    }
}

thanks

About

proxy your traffic through CDN using websocket

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%