Skip to content

jaxonyang/daze

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What's Daze?

Daze is a tool to help you link to the Internet.

Usage

go get -u -v github.com/mohanson/daze/cmd/daze

# server port
# you need a linux machine that can access the Internet, and enter the following command:
daze server -l 0.0.0.0:51958

# client port
# use the following command to link your server:
daze client -s $SERVER:51958 -l 127.0.0.1:51959
# now, you are free to visit Internet
daze cmd curl https://google.com

For browser, Firefox, Chrome or Edge e.g.

Daze forces any TCP connection to follow through proxy like SOCKS4, SOCKS5 or HTTP(S) proxy. It can be simply used in browser, take Firefox as an example: Open Connection Settings -> Manual proxy configuration -> SOCKS Host=127.0.0.1 and Port=51959.

For android

Daze can work well on Windows, Linux and macOS. In additional, it can also work on Android, just it will be a bit complicated.

  1. Download SDK Platform Tools and make sure you can use adb normally.
  2. Connect your phone to your computer with USB. Use adb devices to list devices.
  3. Cross compile daze for android: GOOS=linux GOARCH=arm go build -o daze github.com/mohanson/daze/cmd/daze
  4. Push binary and open shell: adb push daze /data/local/tmp/daze, adb shell
  5. Open daze client: cd /data/local/tmp && chmod +x daze && daze client -s $SERVER:51958 -l 127.0.0.1:51959. Attention, you may wish use setsid to run daze in a new session.
  6. Set the proxy for phone: WLAN -> Settings -> Proxy -> Fill in 127.0.0.1:51959
  7. Now, you are free to visit Internet.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%